I've been set a physics assignment where I need to make a 2D projectile physics engine. Here's one of the tasks:
A trajectory in $2D$ for a projectile that has a launch velocity of 20 ms-1 and a launch
angle of $45^o$ . Time step = 0.01 seconds. The gravity vector is $(0.0, -9.81)$. Show the position vectors and velocity vectors on a console for demonstration purposes
I know where all the values are coming from, and I know their values, but I don't understand where I get the value of $a$ in the $v=u+at$ (this is the formula I must use)
My question is, how do I work out the value of $a$, so that I can perform the equation?