Two Area problems.

Exercise: Find the upside down parabola [Maple Math] so that the area between it and the parabola [Maple Math] is 100. Draw a diagram.

Solution.

Set up the functions which bound the region.

> restart;

> f := x -> a-x^2;

[Maple Math]

> g := x-> x^2;

[Maple Math]

>

Find the points where the functions cross.

> sol := solve(f(x)=g(x),x);

[Maple Math]

>

Get the area of the region. By inspection, we see that sol[2] is the left endpoint where the functions cross.

> area := int(a-2*x^2,x=sol[2]..sol[1]);

[Maple Math]

> sol;

[Maple Math]

Solve an equation.

> sol2 := fsolve(area=100,{a});

[Maple Math]

> assign(sol2);

> plot({f ,g }, sol[2]..sol[1]);

[Maple Plot]

>

Another area problem: The parabola [Maple Math] is tangent to the graph of [Maple Math] at two points and the area of the region bounded by their graphs is 10. Find a, b, and c. Make a sketch.

Solution :

The axis of the parabola is [Maple Math] . That is also the axis of [Maple Math] , so [Maple Math] , or [Maple Math] . The point where the slope of the parabola is 1 is on both graphs. Call the point [x0,y0]. Then [Maple Math] and [Maple Math] .

> restart;

> eq1 := x0-1 = a*x0^2 -6*a*x0 + c;

[Maple Math]

> eq2 := 1 = 2*a*x0 - 6*a;

[Maple Math]

> ac := solve({eq1,eq2},{a,c});

[Maple Math]

>

Finally, the area between the curves is 100, so the righthand half is 50.

> eq3 := Int (a*x^2-6*a*x+c-(2+x-3),x=3..x0)=50;

[Maple Math]

> eq3 := int (a*x^2-6*a*x+c-(2+x-3),x=3..x0)=50;

[Maple Math]

> sol :=solve(subs(ac,eq3),x0);

[Maple Math]

> assign({x0=sol[1]});
assign(ac);

> plot({2+abs(x-3),a*x^2-6*a*x+c},x=sol[2]-2..sol[1]+2,color=black);

[Maple Plot]

>