I've been thinking about creating a continuous rope, made out of infinitely many springs, with infinitely small distances between them.
At first, I developed the Euler-Lagrange Equations: $$ \mathcal{L} = T - U \\ T = \frac{1}{2}m \dot{r}^2 \\ U = \frac{1}{2}kr^2 \\ \mathcal{L} = \frac{1}{2}m \dot{r}^2 - \frac{1}{2}kr^2 $$ But because there are $n$ springs, what I will have to do is to sum up all the spring velocities and distances: $$ \mathcal{L} = \sum_{i=0}^{n} \left [ \frac{1}{2}m \dot{r_i}^2 - \frac{1}{2}k(r_{i+1} - r_i)^2 \right ] $$ Taking the limit to the infinity: $$ \mathcal{L} = \lim_{n \to \infty} \sum_{i=0}^{n} \left [ \frac{1}{2}m \dot{r_i}^2 - \frac{1}{2}k(r_{i+1} - r_i)^2 \right ] = \int \left [ \frac{1}{2}m \dot{r_i}^2 - \frac{1}{2}k(r_{i+1} - r_i)^2 \right ] $$ Rearanging a little bit the equation, we finally get: $$ \mathcal{L} = \frac{1}{2} m \int_{- \infty}^{\infty} \dot{r}^2 - \frac{1}{2} k \int_{- \infty}^{\infty} (r_{i+1} - r_i)^2 $$ But here, I'm stuck. I've tried to parametrize the integral and find any antiderivative, but I don't have very clear how to do it exactly. Is there anything I've being doing wrong? Any advice? Is this even possible?