inner product

This commit is contained in:
Aly 2025-09-12 09:37:24 -06:00
parent c0c42524de
commit 9416dd6214
10 changed files with 28 additions and 11 deletions

13
inner-product.md Normal file
View file

@ -0,0 +1,13 @@
# Inner Product
- operates on two vectors and produces a scalar
- notation $`\braket{x|y}`$
- $`\bra{x}`$ is a [[bra]]
- $`\ket{y}`$ is a [[ket]]
- follows laws
1. $`\braket{0|y} = 0`$ and $`\braket{x|0} = 0`$
2. $`\braket{x + y|z} = \braket{x|z} + \braket{y|z}`$ and $`\braket{x|y + z} = \braket{x|y} + \braket{x|z}`$
3. $`\braket{cx|y} = \overline{c}\braket{x|y}`$ and $`\braket{x|cy} = \braket{x|y}c`$
4. $`\braket{x|y} = \overline{\braket{y|x}}`$
- the inner product $`\braket{x|y}`$ is antilinear in $`x`$ and linear in $`y`$
- if starting with two [[ket]]s, take the conjugate transpose of the former: $`\bra{x} = \overline{\ket{x}}^\intercal = \overline{\ket{x}^\intercal}`$