Advertisement
Guest User

Untitled

a guest
Aug 31st, 2014
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. Plot[t/Sqrt[2 + t^3], {t, -1, 3}, Filling -> Axis]
  2.  
  3. ir0 = ImplicitRegion[0 > y > x/Sqrt[2 + x^3] && -1 < x < 0, {x, y}];
  4. irf[u_] :=
  5. ImplicitRegion[0 < y < x/Sqrt[2 + x^3] && 0 < x < u, {x, y}]
  6. func[v_] := N[RegionMeasure[irf[v]] - RegionMeasure[ir0]]
  7.  
  8. Plot[func[v], {v, 1, 3}]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement