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?
Asked
Active
Viewed 169 times
2
1 Answers
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
f[x_] := x^3+x^4. Use numerical evaluationNin that case. Related posts on this side include this. – user293787 Jul 23 '22 at 07:15