Given a function (e.g. $f(x) = \sin(x)$) and an arc length value, I want to calculate the corresponding $x$-value to calculate the coordinates of the point, which is located on the function with the specific arc length.
Is there a possibility to do that with any function or can I just do this for specific functions?
Since the goal is to create a script/program which does this for me, a numeric solution would be good enough.
Thanks for you help!
For any continuous function $f(x)$, the arc length from $x=0$ to $x=a$ is given by $$L(a)=\int_0^a\sqrt{1+(f'(x))^2}\ dx$$ You are happy with a numerical solution for $a=a^*$ given $L(a)=L^*$. Here is a simple (albeit rather inefficient) method that proceeds this way: