01 Lista
01 Lista
1. You’ve a got a problem. Medical studies have established that a bungee jumper’s
chances of sustaining a significant vertebrae injury increase significantly if the free-
fall velocity exceeds 36 m/s after 4 s of free fall. Your boss at the bungee-jumping
company wants you to determine the mass at which this criterion is exceeded given
a drag coefficient of 0.25 kg/m, the acceleration of gravity is 9.81 m/s2 .
You know from your previous studies that the following analytical solution can be
used to predict fall velocity as a function of time:
v
u gm gcd
u s !
v(t) = t tanh t
cd m
Try as you might, you cannot manipulate this equation to explicitly solve for m,
that is, you cannot isolate the mass on the left side of the equation.
An alternative way of looking at the problem involves subtracting v(t) from both
sides to give a new function:
v
u gm gcd
u s !
f (m) = t tanh t − v(t) (1)
cd m
Now we can see that the answer to the problem is the value of m that makes the
function equal to zero. Hence, we call this a roots problem. Apply the graphical
method to estimate a solution for the mass m.
Answer: The function crosses the m axis between 140 and 150 kg. Visual inspection
of the plot provides a rough estimate of the root of 145 kg (about 320 lb). The
validity of the graphical estimate can be checked by substituting into equation (1).
2. By hand. Determine the root of f (x) = x − 2e−x by:
a) Using the bisection method. Start with a = 0 and b = 1, and carry out the first
three iterations.
b) Using the secant method. Start with the two points, x1 = 0 and x2 = 1, and
carry out the first three iterations.
c) Using Newton’s method. Star at x1 = 1 and carry out the first three iterations.
r sin α
x̄ =
α
3r
Determine the angle α for which x̄ = .
4
First, derive the equation that must be solved and then determine the root using the
following methods:
a) Use the bisection method. Start with a = 0.5 and b = 1.5 and carry out the
firs four iterations.
b) Use the secant method. Start with the two point a1 = 0.5 and a2 = 1.5 and
carry out the first four iterations.
where r is the radius of the base and h is the height. Determine the radius of a
cone that has a surface area of 1800 m2 and a height of 25 m. Solve by using the
Newton’s method with
S
r= √ 2
π r + h2
as the iteration function. Start with r = 17 m and calculate the first four iterations.
using the Newton-Raphson method. Use the initial values of (a) x = 1.2 and y =
1.2
18. M-File. The equation
has a root between 15 and 20. Apply the Newton-Raphson method to find the root
with a tolerance of 10−5 and initial condition of x0 = 16.15.
19. M-File. Suppose the reader is designing a spherical water storage tank for a small
town in a developing city. The volume of the liquid that it can contain is calculated
with
3R − h
V = πh2
3
where V volume (pie3 ), h depth of water in the tank (pie), and R tank radio (pies).
If R = 3 m, at what depth the tank should be filled to contain 30 m3 ?. Use the
Newton-Raphson method to determine the answer.
23. M-File. The Figure (1) shows a uniform beam subject to a linearly increasing dis-
tributed load. The equation for the resulting elastic curve is (see Figure (2)
w0
y= (−x5 + 2L2 x3 − L4 x) (2)
120EIL
Use bisection to determine the point of maximum deflection (the value of x where
dy/dx = 0). Then substitute this value en (2) to determine the value of the maxi-
mum deflection. Use the following parameter values in your computation L = 600
cm, E = 50000 kN/cm2 , I = 30000 cm4 , and w0 = 2.5 kN/cm.
Figura 1: Beam
24. M-File. A total charge Q is uniformly distributed around a ring shaped conductor
with radius a. A charge q is located at a distance x from the center of the ring,
Figure (3). The force exerted on the charge by the ring is given by
1 qQx
F = (3)
4πe0 (x2 + a2 )3/2
where e0 = 8.9 × 10−12 C 2 /(N m2 ). Find the distance x where the force is 1.25 N
if q and Q are 2 × 10−5 C for a ring with a radius of 0.85 m.
Figura 3: Charge
25. M-File. According to Archimedes’s principle, the buoyancy force is equal to the
weight to fluid displaced by the submerged portion to the object. For the sphere
depicted in Figure (4), use bisection to determine the height, h, of the portion that is
above water. Employ the following values for your computation r = 1 m, ρs = 200
kh/cm3 density of sphere, and ρw = 1000 kg/m3 density of water. Note that the
volume of the above-water portion of the sphere can be computer with
πh2
V = (3r − h)
3
26. M-File. Aerospace engineers sometimes compute the trajectories of projectiles such
as rockets. A related problem deals with the trajectory of a thrown ball. The tra-
jectory of a ball thrown by a right fielder is defined by the (x, y) coordinates as
displayed in the Figure (5). The trajectory can be modeled as
g
y = x(tan θ0 ) − 2 2
x2 + y0
2v0 cos θ0
Find the appropriate initial angle θ0 , if v0 = 30 m/s, and the distance to the catcher
is 90 m. Note that the throw leaves the right fielder’s hand at an elevation 1.8 m and
the catcher receives it at 1 m.