👻 Check our latest review to choose the best laptop for Machine Learning engineers and Deep learning tasks!
Approximation means estimating the value of something that is not quite accurate, but almost correct. It plays a vital role in science and technology. Let’s start with the most common example. Have you ever used the exact pi value? Of course not. It is an infinite irrational number with a very long meaning. If we continue to write the exact value of Pi , perhaps even this article will not be enough for this:
3.14159 26535 89793 23846 26433 83279 ...
So here where approximation plays a role. We usually approximate Pi as 3.14
or in rational terms 22/7
. When you got to high school, you probably saw a wider application of approximations in mathematics, which use differentials to approximate the values ​​of quantities, such as (36.6) ^ 1/2 or (0.009) ^ 1/3. In computer science, we can use approximation to find the value or approximate the value of something using loops.
For example: approximation of the cube root of any number. Take a look at the process below:
|
Output of the above code:
2.9963000000018987 is close to the cube root of 27
As we can see, 2.99 is not the exact value of (27) ^ 1/3
but is very close to the exact value 3. This is what we call approximation. Here we have used a series of calculations to approximate the value. First, we declare a variable guess = 0.0
which we will keep incrementing in a loop until it approaches the cube root of 27. Another variable epsilon
is chosen as little as possible to get more accurate meaning. The line while abs (guess ** 3 - cube) & gt; = epsilon:
will take care of this. If it breaks out of the loop with a value greater than epsilon
, it means that we have already crossed the approximate value and failed in the test. Otherwise, it will return the guess value.
👻 Read also: what is the best laptop for engineering students?
We hope this article has helped you to resolve the problem. Apart from Basic approximations in Python, check other code Python module-related topics.
Want to excel in Python? See our review of the best Python online courses 2023. If you are interested in Data Science, check also how to learn programming in R.
By the way, this material is also available in other languages:
- Italiano Basic approximations in Python
- Deutsch Basic approximations in Python
- Français Basic approximations in Python
- Español Basic approximations in Python
- Türk Basic approximations in Python
- Русский Basic approximations in Python
- Português Basic approximations in Python
- Polski Basic approximations in Python
- Nederlandse Basic approximations in Python
- 中文 Basic approximations in Python
- 한국어 Basic approximations in Python
- 日本語 Basic approximations in Python
- हिन्दी Basic approximations in Python
California | 2023-03-26
Simply put and clear. Thank you for sharing. Basic approximations in Python and other issues with io Python module was always my weak point 😁. Will get back tomorrow with feedback
Berlin | 2023-03-26
Maybe there are another answers? What Basic approximations in Python exactly means?. I just hope that will not emerge anymore
Shanghai | 2023-03-26
re Python module is always a bit confusing 😭 Basic approximations in Python is not the only problem I encountered. I am just not quite sure it is the best method