The screen shot shows the REPL session
In the first example we use fixed values for the calculations. To print out the results I first use integer (%d) format and then floating point format (%f) to get the division right.
In the second example I define 4 functions for the 4 basic arithmetic operations. The dictionary with the operator as key and the function as value allows me to select the function to be called depending on the operator given. I write a simple parser to check that user input is correct. Since I force a space between operands and operator it becomes easy to split the calculation into 3 tokens: 2 operands and the operator. Now all I need to do is converting the operator strings to floating values and call the corresponding function.
The last example is quite a bit more tricky as I cannot use the string method split to separate operands and operator any more. The parser allows the characters 0..9,"." and "+","-","*","/".
The operator may only consist of 1 or more digits and/or the decimal point. It may not contain more than 1 decimal point and it must contain at least 1 digit. The operator can be only one of the above basic arithmetic operators. Here is my solution. Test it yourself and try to find an illegal character combination that is not treated. Error handling is often the most difficult part of a program!
There is nothing much new in this exercise except that it shows how to use conditional statements.
The first version uses the fixed values 5 and 7:
The second version takes user input, splits it along spaces and makes sure that exactly 2 tokens have been given
The third version also checks that the 2 tokens are valid integer numbers
In this exercise we try to implement a mathematical function. This should allow you to write your own small algorithm and test it. The function you develop here will be used in exercise 6. Again there are 2 versions: The first one calculates the Fibonacci series F(n) where n is given by the user:
while in the second version the user gives a maximum number not to be exceeded.
Here we implement the calculation of the sine function we used with REPL in the first exercise. It shows how use external modules/libraries. This exercise is pretty simple.
This exercise is a bit bigger! It shows you how to develop your own modules and your own classes. In addition you may study some interesting mathematical number series. The last 4 series are actually approximations to well known mathematical constants:
The reason is simple: My PC has 16 GBytes of RAM memory while the ESP32 has 520 kBytes of RAM. When calculating a big number of iterations you will not be able to keep the intermediate results in a list.
For comparison, here are the correct numbers for pi, e and ln(2)
Here is a plot of the factorial series and the Fibonacci numbers. Since factorial uses multiplication while Fibonacci uses additions, factorial increases much faster.
Here a comparison of the geometric and the harmonic number series. As you can easily see geometric series (here with base 2) converges while the harmonic series diverges (albeit slowly).
Finally the plot for the approximation of the mathematical constants. You can easily see that the Wallis algorithm converges faster that the Gregory-Leibniz one.
... and here is the code:
First we have the class implementing the calculation of the number series:
Then the test program, calling each if the methods in the class:
and finally the program which generates the plots:
I | Attachment | History | Action | Size | Date | Who![]() |
Comment |
---|---|---|---|---|---|---|---|
![]() |
approx.png | r1 | manage | 47.7 K | 2020-05-05 - 12:56 | UliRaich | |
![]() |
assigments.py.txt | r1 | manage | 0.4 K | 2020-05-05 - 13:02 | UliRaich | |
![]() |
calculator.py.txt | r1 | manage | 1.6 K | 2020-05-05 - 13:02 | UliRaich | |
![]() |
calculatorV1.py.txt | r2 r1 | manage | 3.2 K | 2020-05-05 - 13:20 | UliRaich | |
![]() |
calculatorV3.py.txt | r1 | manage | 1.2 K | 2020-05-29 - 16:07 | UliRaich | |
![]() |
conditionsV1.py.txt | r1 | manage | 0.4 K | 2020-05-05 - 17:59 | UliRaich | |
![]() |
conditionsV2.py.txt | r1 | manage | 1.2 K | 2020-05-05 - 17:59 | UliRaich | |
![]() |
conditionsV3.py.txt | r1 | manage | 1.5 K | 2020-05-05 - 17:59 | UliRaich | |
![]() |
factFibonacci.png | r1 | manage | 28.2 K | 2020-05-05 - 12:56 | UliRaich | |
![]() |
fibonacciV1.py.txt | r1 | manage | 1.1 K | 2020-05-05 - 18:09 | UliRaich | |
![]() |
fibonacciV2.py.txt | r1 | manage | 0.8 K | 2020-05-05 - 18:09 | UliRaich | |
![]() |
geoHarm.png | r1 | manage | 28.8 K | 2020-05-05 - 12:56 | UliRaich | |
![]() |
math.py.txt | r1 | manage | 0.9 K | 2020-05-05 - 17:59 | UliRaich | |
![]() |
mathSeries.py.txt | r1 | manage | 3.4 K | 2020-05-28 - 12:50 | UliRaich | |
![]() |
mathSeriesPlot.py.txt | r1 | manage | 3.2 K | 2020-05-28 - 12:50 | UliRaich | |
![]() |
mathSeriesTest.py.txt | r1 | manage | 2.9 K | 2020-05-28 - 12:50 | UliRaich | |
![]() |
memoryAllocError.png | r1 | manage | 13.3 K | 2020-05-05 - 15:09 | UliRaich | |
![]() |
repl-1.png | r1 | manage | 46.2 K | 2020-05-28 - 10:11 | UliRaich |