Task 01
This homework is an activity intended to qualify work class and apply the fixed-point iteration method for solving a problem related to an estimation of the radius of an exoplanet.
Due to: Abr 10
1) One variable equations methods (30%)
In class several methods to find roots were developed. Submit the codes you did during class for at least 2 of the methods seen in class. Show the roots you find for an specific function.
2) Estimating the Radius of an Exoplanet (70%)
When a new planet is discovered, there are different methods to estimate its physical properties. Many times is only possible to estimate either the planet mass or the planet radius and the other property has to be predicted through computer modelling.
If one has the planet mass, a very rough way to estimate its radius is to assume certain composition (mean density) and a homogeneous distribution (a very bad assumption!). For example, for the planet Gliese 832c with a mass , if we assume an earth-like composition, i.e. , we obtain:
That would be the planet radius if the composition where exactly equal to earth's.
A more realistic approach is assuming an internal one-layer density profile like:
where is the density at planet centre and is a characteristic lenght depending on the composition. From numerical models of planet interiors, the estimated parameters for a planet of are are approximately and .
Integrating over the planet volume, we obtain the total mass as
This is a function of the mass in terms of the planet radius.
Solving the equation it would be possible to find a more realistic planet radius. However when using numerical models, it is not possible to approach the solution from the left side as a negative mass makes no sense.
a. Solve the previous problem and find the radius of Gliese 832c using your own version of the Fixed-point iteration algorithm.
##Solution 2)
To find the radius of Gliese, the method fixed point is used. Although the integration can be done analytically, it can also be done numerically. But in this specific case, it is recommended to use an analytical form, not only because it is more efficient but it avoids more errors associated to numerical approximations.