Finding Oblique Projector P for U, W Subspaces

  • Thread starter Thread starter kalleC
  • Start date Start date
  • Tags Tags
    Projector
Click For Summary
SUMMARY

The discussion focuses on finding the oblique projector P such that range(P) equals range(U) and range(I-P) equals range(W). The key equations involved are P^2 - P = 0 and range(I-P) = null(P). The solution requires the use of the Moore-Penrose inverse, particularly in MATLAB, to handle matrix size discrepancies between U and V. The successful approach involves augmenting U with zeros and applying the generalized inverse as outlined in "Generalized inverses: theory and applications" by AvAdi Ben-Israel and Thomas Nall Eden Greville.

PREREQUISITES
  • Understanding of oblique projectors in linear algebra
  • Familiarity with the Moore-Penrose inverse
  • Proficiency in MATLAB for matrix computations
  • Knowledge of complementary subspaces and their properties
NEXT STEPS
  • Study the properties of oblique projectors in linear algebra
  • Learn how to compute the Moore-Penrose inverse in MATLAB
  • Explore the concept of null spaces and their applications
  • Investigate the implications of complementary subspaces in vector spaces
USEFUL FOR

Mathematics students, data scientists, and engineers working with linear transformations and projections in computational applications.

kalleC
Messages
9
Reaction score
0

Homework Statement


Find the oblique projector P so where range(P) = range(U) and range(I-P) = range(W)


Homework Equations


P^2-P = 0
range(I-P) = null(P)


The Attempt at a Solution


It seems that U and W are complementary subspaces. According to:
http://arxiv.org/PS_cache/arxiv/pdf/0809/0809.4500v4.pdf
U*(V*U)t*V
where t is the Moore-Penrose inverse. The task is to be done in Matlab. My problem is that V and U cannot be multiplied due to their sizes. The sizes are for example (5,3) and (5,8) with the rows in common. I tried adding on the identity to fill up space in U and also tried to add null space but this did not work. I always seem to end up with a projector P so that:
P^2-P = 0
PA = A
but PB != 0
and (I-P)B != B

Any ideas?
 
Physics news on Phys.org
p = [U 0] [U V]^-1

According to "Generalized inverses: theory and applications" by AvAdi Ben-Israel, Thomas Nall Eden Greville

0 is nullspace

And sure as hell it works =D
 

Similar threads

Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 4 ·
Replies
4
Views
3K
Replies
8
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 5 ·
Replies
5
Views
7K
  • · Replies 7 ·
Replies
7
Views
3K