Approximate the largest and the smallest values of the integral

729 Views Asked by At

How do I solve this:approximate the largest and the smallest values of the integral

enter image description here

for

enter image description here

1

There are 1 best solutions below

0
On

Please note that some illustration of your efforts to solve this problem with Mathematica is regarded as a minimum requirement for questions. This aids your skills and facilitates assistance.

For motivation:

Plot[t/Sqrt[2 + t^3], {t, -1, 3}, Filling -> Axis]

enter image description here

For the interval of interest the function is positive and close to constant. The integral of the function will be monotone increasing (and close to linear ), hence the minimum and maximum will be the end points of the interval.

I suggest you program using NIntegrate or Integrate.

Just for 'fun', you can use new functions in v10:

ir0 = ImplicitRegion[0 > y > x/Sqrt[2 + x^3] && -1 < x < 0, {x, y}];
irf[u_] := 
 ImplicitRegion[0 < y < x/Sqrt[2 + x^3] && 0 < x < u, {x, y}]
func[v_] := N[RegionMeasure[irf[v]] - RegionMeasure[ir0]]

Confirming the qualitative observation:

Plot[func[v], {v, 1, 3}]

enter image description here

You can now answer your minimum, maximum question.