Question: Question 1. In the next cell, write a Python expression equivalent to this math expression: 22 1- 220 The value of the expression is around


Question 1. In the next cell, write a Python expression equivalent to this math expression: 22 1- 220 The value of the expression is around 0.999996. After you have something that works, try to improve your solution by using only as many parentheses as you need. Question 2. Try to predict the value of the expression in the next cell. Before you run the cell, write your prediction in the cell below it. [ ] 1 - 2 ** 3 / 4 + 5 + 6 U # Your prediction here: Question 3. Try to predict whether the value of the expression below is larger or smaller than the value of the expression in the previous question. You can use the next cell to record your answer. Then run the cell to see what happens. If you were wrong, figure out why, and include that in your written answer. [ ] 1 - 2 ** 13 / 4 + 5 * 6) Write your answer here, replacing this text. Question 4. A famous fact in mathematics is that (1 - Question 3. Try to predict whether the value of the expression below is larger or smaller than the value of the expression in the previous question. You can use the next cell to record your answer. Then run the cell to see what happens. If you were wrong, figure out why, and include that in your written answer. [] 1 - 2 ** (3 / 4 + 5 * 6) Write your answer here, replacing this text. Question 4. A famous fact in mathematics is that (1 3)-- n gets very close to the number e, which is roughly 2.718, when n is large. Verify that it gets closer to e as n gets larger by writing this expression in Python and trying different values for n. Hint: If you write several expressions in a cell, only the last will be printed. If you want to see the values of several copies of the expression at once, put print(...) around them, as in Lab 1. [ ]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
