Processing math: 100%
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered 14 years ago

Mike Hansen gravatar image

The curve is a semicircle with radius 1 -- it's length is π. You can use the arc-length formula to get this

π0cos(t)2+sin(t)2dt=π01dt=π.

Finally, in Sage:

sage: parametric_plot((cos(x), sin(x)), (x, 0, pi))
sage: integrate(sqrt(cos(x)^2+sin(x)^2),x, 0, pi)
pi