Problem sheet 1

Thomas E. Woolley
 
Last edited on:

December 18, 2017

1 Carbon dating

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

p˙ = -  0.000121p,     p(0 ) = 100%,
(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.

1.
Use the above information to estimate the age of the shroud.
2.
State an assumption that has been made which will cause the answer to be incorrect.

pict
Figure 1: The Turin Shroud.

2 Hinged door

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, ,

     ¨y =  - ky       -      a ˙y,        y (0) =  y0,y˙(0) =  0.
     ◟---◝◜---◞             ◟◝◜◞
Simple harmonic motion  Motion damping
(2)

where k and a are positive constants.

1.
Substitute the solution form y(t) = Aexp(λt) into equation (2). What values must λ take in order for this solution to exist?
2.
Describe the solutions you get in the two different cases
   (  )2                 (  )2
(i)  a-   >  k,      (ii)  a-   <  k.
     2                    2
(3)

3.
Which case is preferential for a fire door?

3 Motion under gravity

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.

a =  v˙=  ¨x,
(4)

solve the following questions.


pict
Figure 2: Schematic of the jump from True lies. Not to scale.

1.
Assuming the bike has constant acceleration over time, use the data to determine the maximum acceleration of the bike in m/s2? Hint: the linear acceleration is calculated by change in speed divided by time taken.
2.
The acceleration in the x and y directions is and ÿ, namely the second derivative of the coordinate with respect to time. Assuming the bike was initially stationary and the acceleration was constant over the 13m of the flat hotel roof, how fast is the bike going (horizontally and vertically) at the moment it leaves the roof top?
3.
At the moment the bike leaves the roof top, what is the acceleration in the horizontal and vertical directions?
4.
Using the equations from question 3 and the values from point 2 as initial data, how long does it take the bike to fall 100m? How far could the bike travel horizontally in that time? Could the motorbike have made the jump?
5.
Could the horse have made the jump?
6.
What have you assumed? Would altering these assumptions qualitatively change the results of the question?

4 Possible trajectories

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.


pict

Figure 3: Which sketches could arise from a set of ODEs?

5 Taylor expansion

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.

                     1-  2
exp (x ) ≈  1 + x  +   x  .
                     2
(5)

1.
cos(x).
2.
-1-
1-x.
3.
cos(x)cos(y) - sin(x)sin(y).

Finally, expand

      x
-----------2-
1 -  x -  x
(6)

to sixth order about zero. What is interesting about the coefficients of the powers of x?

6 Computer simulation

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.

Three body problem

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.

1.
Have a play around with the parameters and watch chaos unfurl before you eyes.
2.
Can you find parameters that will create an orbiting solar system? Hint: Make one mass really large and the others small (i.e. m1=1000, m2=0.01, m3=0.01). Place the first mass at the origin, the second at (10,0) and the third at (20,0) (i.e. r10=0, r20=10, r30=20). Now play with the velocities to try and cause the masses m2 and m3 to orbit m1 (see Figure 4(a)).
3.
Can you find an initial set of positions and velocities that will allow all three bodies to orbit each other in a circle (see Figure 4(b))? Hint: Symmetry is key to this question. All masses must be the same. Place the masses initially on the points of an equilateral triangle. Play with the velocities to try and cause the masses to move in a circle.

pict
(a)
pict
(b)

Figure 4: (a) An orbiting system. (b) Planets chasing one another.

Exam Revision

Here are a some of questions that are along the same lines as the above that can be saved for exam revision.

7 Drag racing

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,

F  =  - μmg.
(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.

1.
Use Newton’s second law of motion, (Force=mass×acceleration, or F = m) to calculate the time a drag racer would take to complete a standard quarter-mile course (402.34 meters).
2.
On June 2, 2001, Kenny Bernstein set the world record for a quarter mile track with a time t = 4.477 seconds. What assumptions have we made that causes to over estimate this time?

8 Newton’s law of cooling

T˙ =  k(T ∞ -  T ).
(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) = 5C and T(2) = 8C and that the ambient temperature is 17C.

1.
What is the temperature inside the fridge?
2.
Measurement are prone to error. Suppose your first and second measurements have an error of ±10%. Namely, the first measurement could be anywhere in the range [4.5,5.5]C and similarly the second measurement could be anywhere in the range [7.2,8.8]C. What are the possible maximum and minimum temperatures inside the fridge?
3.
Why would it be problematic if we left measured the second temperature after a much longer time?

9 More Taylor

Expand to quadratic order

1.
sin(x).
2.
cos(sin(x)).
3.
sin(cos(x)).
4.
1cos(x + y).