After doing a bit of digging, I can't find any native method in Julia's linear algebra package that let's me quotient a vector by a subspace. The Wikipedia article seemed to mainly focus on the theory of performing the quotient (which I already know), and I couldn't easily find a source for good quotienting algorithms online.
Notably, writing out a column vector $$V = \underset i \bigoplus \,v_i$$
for some subspace $W \subseteq V$, I want to take the quotient $V / W$.
What are some good algorithms that I can set up quickly and do reliable quotients with? I'd prefer to keep this mostly hand coded, although I have no issue using basic packages like Linear Algebra.
The preference here is for simplicity and speed; I'd rather have something easy to code in relatively few lines rather than something optimized but highly time consuming to work with.
I'm naive to this subject so I don't know if there are challenging edge cases or whatnot, but the dimension of these vector spaces shouldn't be absurdly high, and I don't imagine there should be any pathological numerical inaccuracies when it comes to finding the quotients of these vectors. Papers, textbook pages, and articles are welcome, but I would need to be able to quickly read and copy the information. Julia isn't required, just general computational methods that are fast to implement.