Documentation

PhysLib.Mechanics.NewtonsLaw

Newton's Second Law #

F = m * a can be made both as a computational function and as a rewriting lemma.

Computational version: obtain force from mass and acceleration.

Equations
Instances For
    @[reducible, inline]
    abbrev SI.F_of (m : Mass) (a : Acceleration) :

    Convenient alias: F_of looks more "function-like."

    Equations
    Instances For
      @[simp]
      theorem SI.newton_second_law (m : Mass) (a : Acceleration) :
      F_of m a = m * a

      Rewriting version (law equation): rewrite F into m * a. Useful when the problem states Newton's second law.