drainagesystem 2026-2-11:18:13:10

This commit is contained in:
2026-02-11 18:13:10 -08:00
parent 61d377de09
commit 7bb5d5d762
5 changed files with 39 additions and 12 deletions

View File

@@ -0,0 +1,7 @@
Orthogonal Projections are a type of projection that maps one vector onto another:
![[Pasted image 20260211175349.png]]
In this image the result for the projection of $x$ onto $y$ is $x_p$
in order to derive this we can define $x_p = cy$ where $c$ is a mysterious scalar as $x_p$ is always in the same direction as $Y$ and we can define $x_o = x-x_p = x-cy$ and because $x_p$ is orthogonal we can define it as an Inner Product %%[[Inner Products]]%% like this: $⟨x 𝑐y, y⟩ = 0$ then to solve for c like this: $$⟨x 𝑐y, y⟩ = 0
$$$$⟨x, y⟩-𝑐⟨y, y⟩ = 0$$ $$⟨x, y⟩ = c⟨y, y⟩$$ $$\frac{⟨x, y⟩}{⟨y, y⟩} = 𝑐$$
so after all that we get $c=\frac{⟨x, y⟩}{⟨y, y⟩}$ from this we can derive $x_p$ by doing this: $$x_p = \frac{⟨x, y⟩}{⟨y, y⟩}y$$
because $x_p = cy$ and $c=\frac{⟨x, y⟩}{⟨y, y⟩}$.