 
                 
                InterviewSolution
 Saved Bookmarks
    				| 1. | Find the area of the region bounded by the two parabolas `y=x^2`and `y^2=x`. | 
| Answer» `y_1=f(x)=x^2` `y_2=g(x)=sqrtx` area=`int_0^1g(x)-f(x)dx` =`int_0^1(x^2-sqrtx)dx` =`(-x^3/3+x^(3/2)/(3/2))_0^1` =`2/3-1/3` =`1/3 unit^2` | |