
 (You can compile the *.c files directly without create a project)

 
       Compute the volume V of the solid of revolution
       generated by revolving R about the x-axis.
       The region R bounded by the graph of f, the x-axis,
       and the vertical lines x = a and x = b


        c05b1A.c  : f : x->   x**2 + 2
        c05b1B.c  : f : x->   sin(x)
        c05b1C.c  : f : x->   1/x
        c05b1D.c  : f : x->   exp(x)
        c05b1E.c  : f : x->   log(x)


       Compute the volume V of the solid of revolution
       generated by revolving R about the x-axis.
       The region R bounded by the graph of f, the graph g,
       and the vertical lines x = a and x = b


        c05b2A.c  : g : x->   x**2 + 2    ;   h : x->   x/2  + 1
        c05b2B.c  : g : x->-2*x**2 + 2    ;   h : x->  -x**2 + 1
        c05b2C.c  : g : x->  sin(x)       ;   h : x->   x**2
        c05b2D.c  : g : x->  sqrt(x)      ;   h : x->   x**2
        c05b2E.c  : g : x->  exp(x)       ;   h : x->   cos(x)
        c05b2F.c  : g : x->  exp(x)       ;   h : x->   log(x)

 



     