69 (m / 2) * qdot ^ 2 - V q 70 71/-- The Euler–Lagrange operator `(d/dt)(∂L/∂q̇) - ∂L/∂q` for the standard 72 Lagrangian, evaluated on a smooth trajectory `γ`. The EL equation 73 is `EL[γ](t) = 0`. 74 75 For `L = ½ m q̇² - V(q)`: 76 * `∂L/∂q̇ = m q̇`, so `(d/dt)(∂L/∂q̇) = m γ̈(t)`. 77 * `∂L/∂q = -V'(q)`, so `EL[γ](t) = m γ̈(t) + V'(γ(t))`. 78 79 The EL equation `EL[γ](t) = 0` is therefore `m γ̈ = -V'(γ)`, 80 which is **Newton's second law** with force `F = -V'(γ)`. -/
depends on (16)
Lean names referenced from this declaration's body.