import numpy as np
import matplotlib.pyplot as plt

# dérivation
lt=[0,1,3,5,8,11,13,16,17,18,21]
lx=[0,12,20,29,36,41,45,48,46,41,24]
plt.plot(...,....,...) #tracé des points expérimentaux x(t)
plt.grid()
plt.xlabel(.....)
plt.ylabel(.....)
plt.show()

lv=[0] 
for i in range (.......):
    lv.append(..................)
plt.plot(...,....,...) #tracé des points expérimentaux v(t)
plt.grid()
plt.xlabel(.....)
plt.ylabel(.....)
plt.show()

# Méthode d'Euler
g,R,T,m=.....
tf,N=1,1000
dt=tf/N
lt=[0]
ltheta=[...]
lthetapoint=[..]
for i in range(N):
    c=.....
    lt.append(.....)
    lthetapoint.append(...............)
    ltheta.append(................)
plt.plot(...,...)
plt.grid()
plt.xlabel('....')
plt.ylabel('.....')
plt.show()





