Problem sheet 1
Thomas E. Woolley |
Last edited on: |
December 18, 2017
Radioactive carbon-14 in the atmosphere combines with oxygen to form carbon dioxide. This carbon dioxide is ingested by plants, which in turn are eaten by animals. In this way all living plants and animals absorb quantities of radioactive carbon-14.
When a plant or animal dies, the carbon-14 in the tissue begins to decay. Thus, the age of an artefact that contains plant or animal material can be estimated by determining what percentage of its original carbon-14 content remains.
The carbon-14 content of organic matter decays exponentially. Thus, the percentage, p, of carbon-14 in an artefact is defined by
| (1) |
where 0.000121/year is the decay constant for carbon-14.
In 1988 the Vatican authorized the British Museum to date a cloth relic known as the Shroud of Turin (see Figure 1). This cloth, which first surfaced in 1356, contains the negative image of a human body that was widely believed to be that of Jesus. The report of the British Museum showed that the fibres in the cloth contained between 92% and 93% of their original carbon-14.
Fire doors are usually attached to damped spring hinges so that they cause a door to return to a closed position, rather than stay open. The position, y, of the door can be modelled as a damped oscillator, where the damping is proportional to the door’s speed, ẏ,
| (2) |
where k and a are positive constants.
| (3) |
In the 1994 film True Lies a terrorist uses a motorbike to jump off of one building onto another. Arnold Schwarzenegger then tries to follow the terrorist on a horse. However, the horse thinks better of this and stops before jumping (see the clip for yourself http://bit.ly/2lf1HgL). Here are some facts to digest:
Using the knowledge that acceleration, a, is the rate of change of velocity, v, over time and velocity is the rate of change of displacement, x, over time, i.e.
| (4) |
solve the following questions.
Let u be a general population and t be time. For each of the sketches in Figure 3 classify each trajectory as (strictly) monotonic (increasing or decreasing) or non-monotonic. Further, state whether (i) a single continuously differentiable autonomous ODE, or (ii) a system of continuously differentiable autonomous ODEs could be behind the trajectories (with different colours representing different initial conditions). Alternatively, state when the trajectories could not be specified as a solution of a system of continuously differentiable autonomous ODEs. In each case justify your answer.
No, not even I can make these interesting. Practice your expansion skills, it is good for your (mathematical) health. Expand each of the following functions about x = 0 to quadratic order i.e.
| (5) |
Finally, expand
| (6) |
to sixth order about zero. What is interesting about the coefficients of the powers of x?
I will be putting a simulation problem on each question sheet to help get you gain some coding skills. We will build up the skills slowly so you do not have to worry about being dropped in at the deep end.
If you feel you are ready for a more advanced challenge then all codes in the course are available to modify, have fun.
Finally, all of my codes are written using MatLab’s programming language. If you feel more comfortable in Maple, Mathematica, Python, etc. then please feel free to code the problem up using your own abilities.
Open up the function at the top of the code you will see the lines
m1=1;m2=1;m3=1; % Masses
G=1; % Gravitational constant
r10=1;r20=-1;r30=1i; % Initial positions
v10=1i*0.5;v20=-1i*0.5;v30=1i*0.5; % Initial velocities
These are the parameters of the code. Currently: all masses are equal to 1; the gravitational coefficient is 1; the initial positions of the masses is (1,0), (-1,0) and (0,1); and the initial velocities are (0,1/2), (0,-1/2) and (0,1/2). Note that the code is written using complex variables as Cartesian coordinates i.e. (x,y) is written x + Iy, or x+1i*y in MatLab.
Here are a some of questions that are along the same lines as the above that can be saved for exam revision.
In order for an object to move over a flat surface the applied horizontal force required to push the object must overcome the friction between the object and the surface. The friction force is proportional to the object’s weight,
| (7) |
Since the entire force pushing a dragster forward is due to friction (between the tires and the road), we expect the maximum force propelling the dragster forward will be when μ = 1.
| (8) |
You can find the temperature inside your refrigerator without putting a thermometer inside. Take an item out of the fridge that has had chance to acclimatise to the temperature inside the fridge. For example, a can of fizzy drink would be perfect. Let the can warm for one minute and take its temperature. Let it warm for another minute and record its temperature again.
Suppose that the readings are T(1) = 5∘C and T(2) = 8∘C and that the ambient temperature is 17∘C.
Expand to quadratic order