Document 25
Document 25
QUESTION 1:
QUESTION 7:
x0 = position(0)
x4 = position(4)
displacement = x4 - x0
x2 = position(2)
# Print results
QUESTION 14:
import math
# Position function
def position(t):
return 16 * t * math.exp(-t)
def velocity(t):
t_stop = 1
# Position at t = 1
x_stop = position(t_stop)
# Print result
print("Fisrt, find the velocity and then find out the time/t when velocity is zero")
x0 = position(0)
x4 = position(4)
displacement = x4 - x0
x2 = position(2)
# Print results
v_initial = 18 # m/s
# Average acceleration