PlanetMath (more info)
 Math for the people, by the people. Sponsor PlanetMath
Encyclopedia | Requests | Forums | Docs | Wiki | Random | RSS  
Login
create new user
name:
pass:
forget your password?
Main Menu
Viewing Version 3 of 'arc length example'
[ view 'arc length example' | back to history ]

Title of object: arc length example
Canonical Name: ArcLengthExample
Type: Example

Created on: 2009-06-14 18:19:07
Modified on: 2009-06-25 15:12:00

Creator: pahio
Modifier: pahio
Author: pahio

Classification: msc:26B15
Synonyms: arc length example=logarithm of sine function

Revision comment (for changes between this and next version):

test

Preamble:

% this is the default PlanetMath preamble. as your knowledge
% of TeX increases, you will probably want to edit this, but
% it should be fine as is for beginners.

% almost certainly you want these
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{pstricks}
\usepackage{pst-plot}

% used for TeXing text within eps files
%\usepackage{psfrag}
% need this for including graphics (\includegraphics)
%\usepackage{graphicx}
% for neatly defining theorems and propositions
\usepackage{amsthm}
% making logically defined graphics
%\usepackage{xypic}

% there are many more packages, add them here as you need them

% define commands here

\newcommand{\sijoitus}[2]%
{\operatornamewithlimits{\Big/}_{\!\!\!#1}^{\,#2}}
Content:

The functions
$$x \;\mapsto\; \ln\sin{x} \quad \mbox{and} \quad x \;\mapsto\, \ln\cos{x}$$
belong to the few real functions, the arc length of which are expressible in closed form (other ones are mentionned in the entry arc length of parabola).\\

We calculate the arc length of the curve
$$y \;=\; \ln\sin{x}\qquad (0 \;<\; a \;<\; x \;<\; \frac{\pi}{2}).$$
By the chain rule, we have
$$y' \;=\; \frac{1}{\sin{x}}\cdot\cos{x} \;=\; \cot{x}.$$
Hence the arc length is
$$s \;=\; \int_a^{\frac{\pi}{2}}\!\sqrt{1+(\cot{x})^2}\,dx \;=\; \int_a^{\frac{\pi}{2}}\!\frac{1}{\sin{x}}\,dx
\;=\; \sijoitus{a}{\quad\frac{\pi}{2}}\!\ln|\tan\frac{x}{2}| \;=\;\ln1-\ln|\tan\frac{a}{2}| \;=\; \ln\cot\frac{a}{2}$$
(see integration of rational function of sine and cosine). \\


A pstricks test code for plotting logarithm:

\begin{center}
\begin{pspicture}(-1,-1)(4,4)
\psaxes[Dx=1,Dy=1]{->}(0,0)(-0.5,-0.5)(3.5,3.5)
\rput(3.6,-0.2){$x$}
\rput(0.2,5.45){$y$}
\psplot[linecolor=blue]{1}{3}{x ln}
\rput(3,3){$\mbox{Logarithm?\,\,}y = \ln{x}$}
\end{pspicture}
\end{center}