2

Measuring the length of any function? for example, if y = f(x), what is the length of the function curve between x = 2 to x = 5?

J. M.'s missing motivation
  • 124,525
  • 11
  • 401
  • 574
Jim Wren
  • 29
  • 1

1 Answers1

7
ArcLength[{x, f[x]}, {x, 2, 5}]

Or calculate the numerical result.

ArcLength[{x, f[x]}, {x, 2., 5}]
ArcLength[{x, f[x]}, {x, N@2, 5}]
cvgmt
  • 72,231
  • 4
  • 75
  • 133