In (1) : in (2) :: Def For For If Return
In (1) : in (2) :: Def For For If Return
Date : 21/04/2025
Aim : To ortonormalise the given set of vectors by gram schmidt orthogonalisation process
In [1]: V = [vector(RDF,[1,1,1]),vector(RDF,[1,3,1]),vector(RDF,[0,6,1])]
Orthonormal basis:
(0.5773502691896258, 0.5773502691896258, 0.5773502691896258)
(-0.4082482904638632, 0.8164965809277258, -0.4082482904638632)
(-0.7071067811865481, 6.2803698347351e-16, 0.7071067811865468)
Conclusion : successfully ortonormalise the given set of vectors by gram schmidt orthogonalisation
process.