Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
polimi-cheatsheet
GitHub Repository: polimi-cheatsheet/GAL-cheatsheet
Path: blob/master/teoria/2.gram-schmidt.tex
185 views
1
\section{Algoritmo di Gram-Schmidt}
2
3
Sia V uno spazio euclideo e $\vec{v}_1, \vec{v}_2, \dots, \vec{v}_n$ l.i. in V:
4
\begin{itemize}
5
\item $\vec{b}_1 = \vec{v}_1$
6
\item $\vec{b}_2 = \vec{v}_2 - \frac{\product{\vec{v}_2}{\vec{b}_1}}{||\vec{b}_1||^2}\vec{b}_1$
7
\item $\vec{b}_h = \vec{v}_h - \left(
8
\frac{\product{\vec{v}_h}{\vec{b}_1}}{||\vec{b}_1||^2}\vec{b}_1 +
9
\cdots +
10
\frac{\product{\vec{v}_h}{\vec{b}_{h-1}}}{||\vec{b}_{h-1}||^2}\vec{b}_{h-1}
11
\right)$
12
\end{itemize}
13
14
$\Base = \{\vec{b}_1, \vec{b}_2, \dots, \vec{b}_n\}$ è una \textbf{base ortogonale} di $V$.
15
16