Consider a spherical storage tank containing oil. The tank has a diameter of 8 ft. You are asked

to calculate the height h to which a dipstick 10 ft long would be wet with oil when immersed in
the tank when it contains 6 3 ft of oil.
The equation that gives the height, h , of the liquid in the spherical tank for the given
volume and radius is given by
    2 2 f (h)  2h h 9h  7.6394 cos(h )
(a) By using an appropriate method that you have learned in this course, show that this
function has at least one root
(b) Find the positive lowest root of the equation by using
(i) Newton Raphson method
(ii) Secant method
For part (b), choose suitable initial guess(es) to perform the computation until
2 1 10 . a   

When the tank has 6.3 ft of oil, the dipstick will be wet by 6.3 feet if it is inserted vertically to the very bottom of the tank.

The radius of the surface of water at height x in a sphere of radius R is given by r(x)=sqrt(R^2-(x-R)^2)
By integrating r(x) with from 0 to height h, the volume of water is
V(h)=∫r(x)dx from 0 to h
= π(x³R-x^4/4)/3

Which gives you the volume in terms of h.
To find the height in terms of volume, you can solve the problem using Newton's method, secant method or any other iterative method.

Correction:

V(h) should read:
V(h)=π(3h²R-h³)/3
=πh²(R-h/3)

then the initial value for h, what?

To solve this problem, we will first need to understand the equation provided and then apply the Newton-Raphson and Secant methods to find the positive lowest root.

(a) To show that the function has at least one root, we can make use of the Intermediate Value Theorem. The idea is to evaluate the function at two different points, one with a negative value and the other with a positive value, and then conclude that there must exist a root between those two points.

In this case, we will evaluate f(h) at two points, say h = 0 and h = 10. Plugging these values into the equation:
f(0) = 2(0)^2 - 9(0) + 7.6394cos(0) = 7.6394
f(10) = 2(10)^2 - 9(10) + 7.6394cos(10) = -21.4945

Since f(0) = 7.6394 is positive and f(10) = -21.4945 is negative, we can conclude that there exists at least one root between h = 0 and h = 10.

(b) Now, let's proceed to find the positive lowest root of the equation using the Newton-Raphson and Secant methods.

(i) Newton-Raphson Method:
The Newton-Raphson method is an iterative method that uses an initial guess to approximate the root of an equation. The formula for each iteration is given by:

h(n+1) = h(n) - f(h(n))/f'(h(n))

where h(n) represents the current approximation, f(h(n)) is the value of the function at h(n), and f'(h(n)) is the derivative of the function at h(n).

To apply the Newton-Raphson method to our equation, we need to compute the derivative of f(h). Taking the derivative, we find:
f'(h) = 4h - 9 - 7.6394sin(h)

Now, we can choose an initial guess, h(0), and perform the iterations until the desired accuracy is achieved.

(ii) Secant Method:
The Secant method is another iterative method that also uses initial guesses to approximate the root of an equation. The formula for each iteration is given by:

h(n+1) = h(n) - ( f(h(n)) * (h(n) - h(n-1)) ) / ( f(h(n)) - f(h(n-1)) )

where h(n) and h(n-1) represent the current and previous approximations, and f(h(n)) and f(h(n-1)) are the values of the function at h(n) and h(n-1), respectively.

Similarly, we can choose suitable initial guesses and perform the iterations until the desired accuracy is achieved.

To complete this calculation, we need specific initial guesses and a specific desired accuracy (10^(-10) is a commonly used value for ε), which are not provided in the question. Please provide the values for the initial guesses and desired accuracy in order to proceed with the actual calculations.