Clear[A, Lam]
DSolve[Len'[x] == Sqrt[((2*Pi*A)/Lam)^2*
(-Sin[(2*Pi*x)/Lam]^2) - ((2*Pi*A)/Lam)^2 + 1], Len, x]
ArcLen[x_, A_, Lam_] = Sqrt[(Lam/(2*Pi))^2 - A^2]*
EllipticE[(2*Pi*x)/Lam,(4*A^2*Pi^2)/(Lam^2 - 4*A^2*Pi^2)];
A = 1.; Lam = 8;
Plot[A*Sin[(2*Pi*x)/Lam], {x, 0, Lam}]
Plot[ArcLen[x, A, Lam], {x, 0, Lam}]
ArcLen[Lam/2, A, Lam]
I am trying to find arclength of a Sinewave using Elliptic Integral of second kind as defined by Mathematica. But cannot have a plot for full domain or Evaluate. Please help.

[]not(). – Quantum_Oli May 18 '16 at 07:34Plotcannot handle. – Quantum_Oli May 18 '16 at 08:27