The number e is a famous irrational number called Euler’s number after Leonhard Euler a Swiss Mathematician (1707 – 1783). Number e is considered to be one of the most important numbers in mathematics.
The first few digits are: 2.7182818284590452353602874713527… It has an infinite number of digits with no recurring pattern. It cannot be written as a simple fraction.
Number e is the limit of (1 + 1/n)n as n approaches infinity:

Number e is a mathematical constant that is the base of the natural logarithm: the unique number whose natural logarithm is equal to one. Find out more on https://en.wikipedia.org/wiki/E_(mathematical_constant).
In this challenge we will use a Python script to calculate an approximation of e using three different approaches. The first approach as described above as already been implemented in the above Python trinket.
Calculating e using an iterative approach
Euler’s number, e, can also be calculated as the sum of the infinite series:

Complete your Python script to implement this infinite series using an iterative approach. (Method 2)
Calculating e using a continuous fraction (iterative approach)
A less common approach to calculate number e is to use a continued fraction based on the following sequence:
Continued Fraction:
Complete your Python script to implement this continued fraction. (Method 3)

Solution...
The solution for this challenge is available to full members!Find out how to become a member:
➤ Members' Area
In geometry, the golden angle is the smaller of the two angles created by sectioning the circumference of a circle according to the golden ratio.





In this challenge we will write several procedures to graph different mathematical equations on screen using Python Turtle.
On the Python trinket used below the turtle screen is 400 pixels wide by 400 pixels high.
For this challenge you will create a quiz based on the game of Monopoly.
UK-monopoly.txt
When your browser displays a webpage on screen it uses 3 different programming languages called HTML, CSS and JavaScript. We call the combination of these three languages “client-side web technologies”.


In this challenge we will create a three-player game using Scratch.

Look at the code provided below use to draw a tree using a recursive function.






