Exercises
Exercises#
After completing the tutorial attempt the following exercises.
If you are not sure how to do something, have a look at the βHow Toβ section.
Use the class created in Tutorial to find the roots of the following quadratics:
Write a class for a Linear expression and use it to find the roots of the following expressions:
If rain drops were to fall randomly on a square of side length
the probability of the drops landing in an inscribed circle of radius would be given by:Thus, if we can approximate
then we can approximate as . In this question we will write code to approximate using the random library.First create the following class:
class Drop: """ A class used to represent a random rain drop falling on a square of length r. """ def __init__(self, r=1): self.x = (0.5 - random.random()) * 2 * r self.y = (0.5 - random.random()) * 2 * r self.in_circle = (self.y) ** 2 + (self.x) ** 2 <= r ** 2
Note that the above uses the following equation for a circle centred at
of radius :To approximate
create instances of Drops and count the number of those that are in the circle. Use this to approximate .In a similar fashion to question 3, approximate the integral
. Recall that the integral corresponds to the area under a curve.