Question 1

A window is of the form of a rectangle surmounted by a semicircle. The rectangle is made of clear glass, and the semicircle is made of tinted glass that transmits only half as much light per unit area as the clear glass does. The total perimeter is fixed at 400 cm. Find the width of the window that will admit most light. Neglect the thickness of the frame. Express the answer to the nearest cm.

Solution

Detailed Derivation

1. Variables and Constraints

Let:

The total perimeter (P) is fixed at 400 cm. The perimeter is the sum of the base (w), the two vertical sides (2h), and the semicircular arc (πr):

P=w+2h+πr400=w+2h+π(w2)(1)

2. Light Admitted (Objective Function)

The clear glass is the rectangular area: Arect=wh.

The tinted glass is the semicircular area: Asemi=12πr2=12π(w2)2=πw28.

Let Lclear be the light transmitted per unit area by the clear glass. The tinted glass transmits 12Lclear per unit area.

The total light admitted (L) is proportional to the effective area (A):

A=(Area of clear glass)×(1)+(Area of tinted glass)×(12)A=wh+12(πw28)=wh+πw216(2)

3. Effective Area in Terms of Width (w)

First, we solve the perimeter constraint (1) for h:

2h=400wπw2h=200w2πw4

Next, substitute this expression for h into the effective area equation (2):

A(w)=w(200w2πw4)+πw216A(w)=200ww22πw24+πw216A(w)=200w12w2w2(π4π16)

Since π4π16=4ππ16=3π16, we have:

A(w)=200w12w23π16w2A(w)=200ww2(816+3π16)A(w)=200w(8+3π16)w2

4. Maximization

To find the maximum effective area, we take the derivative of A(w) with respect to w and set it to zero (dAdw=0):

dAdw=2002(8+3π16)wdAdw=200(8+3π8)w

Setting the derivative to zero:

200(8+3π8)w=0200=(8+3π8)ww=20088+3πw=16008+3π

5. Calculation

Using π3.14159:

w=16008+3(3.14159)w16008+9.42478w160017.42478w91.823 cm

Rounding to the nearest cm, the optimal width is:

w92 cm

Question 2

Let f be a differentiable function. Use the definiton of derivative to show that

ddxf(x2)=2xf(x2)

To show that ddxf(x2)=2xf(x2) using the definition of the derivative, we must apply the limit definition to the function g(x)=f(x2).

The definition of the derivative of a function g(x) is:

g(x)=limh0g(x+h)g(x)h

In our case, g(x)=f(x2), so we need to find:

ddxf(x2)=limh0f((x+h)2)f(x2)h

Solution

Derivation

1. Set up the Limit

Start by expanding the term (x+h)2 inside the function f:

ddxf(x2)=limh0f(x2+2xh+h2)f(x2)h

2. Introduce the Derivative Definition of f

We know that f is a differentiable function, which means the derivative f(a) exists and is defined as:

f(a)=limk0f(a+k)f(a)k

To use this, we let a=x2 and the change in the input be k=2xh+h2. As h0, k0 as well.

3. Algebraic Manipulation (Multiply and Divide by k)

We multiply and divide the expression inside the limit by k=(2xh+h2):

ddxf(x2)=limh0[f(x2+(2xh+h2))f(x2)kkh]ddxf(x2)=limh0[f(x2+(2xh+h2))f(x2)(2xh+h2)(2xh+h2)h]

4. Separate the Limit Terms

We can split the limit of the product into the product of two limits:

ddxf(x2)=limh0f(x2+2xh+h2)f(x2)2xh+h2Limit 1limh02xh+h2hLimit 2

5. Evaluate Limit 1

Let k=2xh+h2. As h0, k0.

Limit 1=limk0f(x2+k)f(x2)k

By the definition of the derivative of f, this limit is simply f(x2):

Limit 1=f(x2)

6. Evaluate Limit 2

Factor h out of the numerator and simplify:

Limit 2=limh0h(2x+h)hLimit 2=limh0(2x+h)

As h0, the limit becomes:

Limit 2=2x

7. Combine the Results

Substitute the results of Limit 1 and Limit 2 back into the main expression:

ddxf(x2)=(Limit 1)(Limit 2)ddxf(x2)=f(x2)2xddxf(x2)=2xf(x2)

This completes the proof using the definition of the derivative. (Note: This is equivalent to applying the Chain Rule, where ddxf(g(x))=f(g(x))g(x) with g(x)=x2.)


Question 3

Let f(x)=x43x+1=0. Use intermediate value theorem there exists c(1,2) so that f(c)=0. Use Newton's method with x0=1.5 to find c, correct to 3 decimal places.

Solution

Verification using the Intermediate Value Theorem (IVT)

The Intermediate Value Theorem (IVT) states that if a function f(x) is continuous on a closed interval [a,b] and k is any number between f(a) and f(b), then there exists at least one number c in the open interval (a,b) such that f(c)=k.

For the given polynomial function f(x)=x43x+1, we want to show there exists a root c(1,2) such that f(c)=0.

  1. Continuity: Since f(x) is a polynomial, it is continuous everywhere, including the interval [1,2].

  2. Evaluate Endpoints:

    • f(1)=(1)43(1)+1=13+1=1
    • f(2)=(2)43(2)+1=166+1=11
  3. Conclusion:

    Since f(1)=1 and f(2)=11, and 0 is between 1 and 11 (i.e., f(1)<0<f(2)), by the IVT, there must exist at least one value c in the interval (1,2) such that f(c)=0.

Finding the Root using Newton's Method

Newton's Method (or the Newton-Raphson method) is an iterative process to approximate the roots of a real-valued function.

The iteration formula is:

xn+1=xnf(xn)f(xn)

1. Function and its Derivative

2. Iterations

We start with the initial guess x0=1.5. We stop when the successive approximations agree to 3 decimal places.

n xn​ f(xn​)=xn4​−3xn​+1 f′(xn​)=4xn3​−3 xn+1​=xn​−f′(xn​)f(xn​)​
0 1.5 (1.5)43(1.5)+1=5.06254.5+1=1.5625 4(1.5)33=4(3.375)3=13.53=10.5 1.51.562510.51.351190
1 1.351190 (1.351190)43(1.351190)+13.3361104.053570+10.282540 4(1.351190)334(2.469766)39.87906436.879064 1.3511900.2825406.8790641.310214
2 1.310214 (1.310214)43(1.310214)+12.9566993.930642+10.026057 4(1.310214)334(2.251460)39.00584036.005840 1.3102140.0260576.0058401.305904
3 1.305904 (1.305904)43(1.305904)+12.9157203.917712+10.000008 4(1.305904)334(2.232338)38.92935235.929352 1.3059040.0000085.9293521.305903
4 1.305903

Since x31.305904 and x41.305903, they agree to at least 4 decimal places.

3. Final Answer

The root c of f(x)=0, correct to 3 decimal places, is:

c1.306

Question 4

Express the following as a definite integral 01f(x)dx and find its exact value. Express your answer in the form alnb where a, b are to be determined.

limnk=1n6k2k3+n3

(a) Let n be a positive integer. Prove the reduction formula

tannxdx=tann1xn1tann2xdx

Hence, evaluate 0π/4tan4xdx. Express the answer in terms of π.

(b) Let R be the region bounded by the curve y=x1+x3, x=1, and y=0. Find the volume when R is rotated 2π radians about the y-axis. Express your answer in terms of π

Solution

1. Definite Integral and Exact Value

The given limit of a sum is a Riemann sum which can be expressed as a definite integral abf(x)dx.

The standard form for a Riemann sum that converges to 01f(x)dx is:

limnk=1nf(kn)1n

We have the expression:

S=limnk=1n6k2k3+n3

1.1. Expressing as a Definite Integral

We need to manipulate the given sum into the standard form by factoring out terms involving n.

S=limnk=1n6k2k3+n3=limnk=1n6k2n3(k3n3+1)S=limnk=1n6k2n21(kn)3+11nS=limnk=1n6(kn)2(kn)3+11n

By comparing this with limnk=1nf(kn)1n, we can make the following identification:

Therefore, the definite integral is:

016x2x3+1dx

where f(x)=6x2x3+1.

1.2. Finding the Exact Value

We use u-substitution to evaluate the integral:

016x2x3+1dx

Let u=x3+1.

Then the differential is du=3x2dx.

We can rewrite the integral in terms of du:

6x2x3+1dx=2(3x2dx)x3+1=2udu=2ln|u|+C

Now, change the limits of integration:

The definite integral becomes:

122udu=[2ln|u|]12=2ln22ln1

Since ln1=0:

=2ln2

The exact value is 2ln2.

The answer is in the form alnb, where a=2 and b=2.

(a) Trigonometric Reduction Formula

2.1. Prove the Reduction Formula

We want to prove:

tannxdx=tann1xn1tann2xdx

We start by rewriting tannx using the identity tan2x=sec2x1:

In=tannxdx=tann2xtan2xdxIn=tann2x(sec2x1)dxIn=tann2xsec2xdxtann2xdx

The second integral is simply In2. We focus on the first integral, J:

J=tann2xsec2xdx

Use u-substitution:

Let u=tanx.

Then du=sec2xdx.

J=un2du

Assuming n21, or n1, we can integrate:

J=un1n1+C=tann1xn1+C

Substitute J back into the expression for In:

In=tann1xn1tann2xdx

This proves the reduction formula.

2.2. Evaluate 0π/4tan4xdx

We use the reduction formula for n=4:

I4=tan4xdx=tan41x41tan42xdxI4=tan3x3I2

Now, we apply the formula again for n=2:

I2=tan2xdx=tan21x21tan22xdxI2=tanx1tan0xdxI2=tanx1dx=tanxx

Substitute I2 back into I4:

tan4xdx=tan3x3(tanxx)+Ctan4xdx=13tan3xtanx+x+C

Finally, we evaluate the definite integral from 0 to π4:

0π/4tan4xdx=[13tan3xtanx+x]0π/4=(13tan3(π4)tan(π4)+π4)(13tan3(0)tan(0)+0)

Since tan(π4)=1 and tan(0)=0:

=(13(1)31+π4)(00+0)=131+π4=23+π4

The value is π423.

(b) Volume of Revolution about the y-axis

We are asked to find the volume of the region R bounded by y=x1+x3, x=1, and y=0 rotated 2π radians about the y-axis.

We will use the Cylindrical Shell Method.

3.1. Set up the Integral

Since the rotation is about the y-axis (a vertical axis), we integrate with respect to x.

The formula for the volume V is:

V=2πab(radius)(height)dx V=2π01x(x1+x3)dxV=2π01x21+x3dx

3.2. Evaluation

We use u-substitution to evaluate the integral:

01x21+x3dx

Let u=1+x3.

Then the differential is du=3x2dx, so x2dx=13du.

Change the limits of integration:

The volume integral becomes:

V=2π121u(13du)V=2π3121uduV=2π3[ln|u|]12V=2π3(ln2ln1)

Since ln1=0:

V=2π3ln2

The volume is 2π3ln2.