Lagmite processes kinematics in physics by utilizing either task cards, unit cards, or formula cards. Also, gravity on Earth (denoted by $g$) is equal to 9.80665 m/s². (See source)

To change gravity to its appropriate value (such as 10 m/s² which is commonly used for school), use the following syntax before storing the other values:

str [expr] 10 <m/s> /g/

This uses the formula card of /g/, which by default has a value of 9.80665 m/s². When not expressed, it will always revert to the default value.

Linear Motion

Kinematics represents the motion of objects or particles. In kinematics, there are three general things to consider:

$$ v = \frac{\Delta x}{t} $$

$$ \Delta x = x_{\text{f}} - x_{\text{i}} $$

$$ a = \frac{v_{\text{f}} - v_{\text{i}}}{t} $$

The formula cards that can be used are:

As a first example, return the displacement of an object if known its velocity is 2 m/s travelling for 60 seconds. To do this, we can use the syntax:

str [expr] 2 <m/s> /v/
str [expr] 60 <s> /t/
disp [text] (calc [expr] /x/)

//Expected result: 120 m