TP - GRAM - SCHMIDT - Jupyter Notebook
TP - GRAM - SCHMIDT - Jupyter Notebook
TP - GRAM - SCHMIDT - Jupyter Notebook
# Algorithme de Gram-Schmidt
## Orthonormalisation OUBOUDRAR ISMAIL
Entrée [ ]:
import numpy
init_printing()
Entrée [ ]:
Entrée [12]:
Orthonormalisation
Entrée [10]:
Entrée [11]:
# Exemple
Entrée [13]:
E1 = (
lambda u, v: u.dot(v),
lambda u, v: u - v,
lambda t, u: t * u)
localhost:8888/notebooks/Downloads/TP_GRAM_SCHMIDT.ipynb 1/2
28/02/2023 21:54 TP_GRAM_SCHMIDT - Jupyter Notebook
Entrée [14]:
ps1 = E1[0]
print('produit scalaire :')
p=ps1(Matrix([1,2,3]), Matrix([4,5,6]))
p
produit scalaire :
Out[14]:
32
Entrée [15]:
sub1 = E1[1]
print("soustraction")
sub1(Matrix([1, 2, 3]), Matrix([2, 1, 4]))
soustraction
Out[15]:
−1
1
−1
soit la base ((1, 2, 3),(4, 5, 6),(7, 8, 8)).
Entrée [16]:
B1=E1[2]
B1 =([Matrix([1,2,3]),Matrix([4,5,6]),Matrix([7,8,8])])
B1
Out[16]:
1 4 7
2 , 5 , 8
3 6 8
Entrée [ ]:
Entrée [17]:
B2 = gram_schmidt(B1, E1)
B2
Out[17]:
1 127 − 16
3 1
23 , −76 , −31
7 6
Entrée [41]:
est_orthogonale(B2, E1)
Out[41]:
True
Entrée [18]:
orthonormer(B2, E1)
Out[18]:
√14 4√21 − √6
√1414 , √2121 , √66
3√714 221√21 3√6
14 − 21 − 6
Entrée [ ]:
localhost:8888/notebooks/Downloads/TP_GRAM_SCHMIDT.ipynb 2/2