proj
std.linalg.proj · Level L0Orthogonal projection of x onto the line spanned by u. Calls dot twice.
(x·u / u·u)·u
Signature
proj(x: f64[n], u: f64[n]) → f64[n]
Structure
The function as NOVA stores it: one box per input, operation and output, and arrows that carry values. A double border marks a call to another library function; select it to open that function.
- input
- operation
- constant
- call
- output
Verification
- Signature proven by NOVA’s shape solver, for every size.
- Equal to the reference
(np.dot(x, u) / np.dot(u, u)) * uin exact rational arithmetic, on all 40 test cases. - All 122 float64 results inside the running error bound; the closest uses 38% of it.
- Interpreter and NumPy backend return bit-identical results.
Accuracy in detail
- correctly rounded (the float64 nearest the exact value)
- 74%
- bit-equal to the NumPy formula in float64
- 99%
- largest error, in units in the last place
- 2.42