Fun with shear operations and SVD – V – matrices of sheared n-dimensional ellipsoids

This post requires Javascript to display formulas!

In my previous post of the series

Fun with shear operations and SVD – I – shear matrices and examples created with Blender
Fun with shear operations and SVD – II – Shearing of rectangles and cubes with Python and Matplotlib
Fun with shear operations and SVD – III – Shearing of circles
Fun with shear operations and SVD – IV – Shearing of ellipses

we have studied the transformation of an ellipse by a shear operation. The coordinates of points on an ellipse and the components of respective position vectors fulfill a quadratic equation (quadratic form):

αox2o+βoxoyo+γoy2o=δo

An equivalent matrix equation for respective vectors (xo,yo)T is

(xo,yo)AAOq(xo,yo)T=δo

The superscript “T” symbolizes the transposition operation. The symmetric (2×2)-matrix AAOq defines the original, unsheared ellipse. The suffix “q” indicates the quadratic form. I have shown how the shear parameter λS impacts the coefficients of a corresponding (2×2)-matrix AASq that defines the sheared ellipse.

What I have not done in the last post is to show how our matrix AASq is related to a shear matrix MMsh (see the first post), which describes the effect of the shear on the vectors (xo,yo)T. I am going to discuss this below. The given matrix relations will also be valid for general n-dimensional ellipsoids.

Matrix relations as discussed below are helpful to accelerate numerical calculations as Numpy (in cooperation with libraries for your OS) provides highly optimized modules for matrix operations. n-dimensional ellipsoids furthermore characterize hyper-surfaces of multivariate normal distributions which appear in certain areas of Machine Learning and respective data.

Matrix describing a centered n-dimensional ellipsoid

We consider n-dimensional and centered ellipsoids whose symmetry centers coincide with the origin of the Euclidean coordinate system [ECS] we work with. A position vector (xo1,xo2xon)T

xoxo=(xo1xo2xon)

is a vector drawn from the origin to a point on the ellipsoid’s hyper-surface. Note that a general vector of a vector space has no reference to a coordinate system’s origin. Therefore the distinction. A general ellipsoid is defined by a quadratic form in the components of its position vectors. The quadratic form is equivalent to the following matrix equation

(xoxo)TAAOqnxoxo=1

where AAOqn now represents a symmetric (nxn)-matrix. The “” symbolizes a matrix product.

Note: A coefficient δ>0 which we have used in previous posts on the right side of the equation can be included in the coefficient values of the matrix).

Note that the equations above define an ellipsoid up to a translation vector. This is reflected in the fact that the above equation does not create any linear terms.

Quadratic forms not only define ellipsoids. For an ellipsoid we have to assume that the determinant ofAAOqn is > 0 and that the matrix is invertible:

det(AAOqn)>0

Note that you could choose an ECS in which the ellipsoid’s principal axes would align with the ECS’s coordinate axes. Such a choice would correspond to a PCA-transformation of the vector data. AAOqn would then become diagonal. This corresponds to the fact that a symmetric matrix always has an eigenvalue-decomposition.

Equation of the quadratic form for the sheared ellipsoid

In the first post of this series I have defined a (invertible) shear matrix as a unipotent matrix MMsh with all coefficients of the lower triangular part, off the diagonal, being equal to 0.0 and all elements on the diagonal being equal to 1:

MMsh=(1m12m1n(0)01m2n001)

Note:

det(MMsh):=1

So an inverse matrix MM1sh exists. Shearing our original ellipse (with position vectors xoxo) leads to new vectors xSxS:

xSxS=MMshxoxo

We insert xSxS into our defining equation of the original ellipsoid to derive a matrix equation for the sheared ellipsoid:

[MM1shxSxS]TAAOqn[MM1shxSxS]=1

Giving:

(xSxS)T[(MM1sh)TAAOqnMM1sh]xSxS=1

This, obviously, is a new definition equation for a quadratic form in the components of xSxS with a matrix

AASqn=(MM1sh)TAAOqnMM1sh

We also find:

det(AASqn)=det(AAOqn)>0

From this we can conclude with confidence that we again have gotten a n-dimensional ellipsoid.

Inclusion of a SVD eigendecomposition of MS

A “Singular Value Decomposition” [SVD] can be applied to any (nxm)-matrix Q (with n > m):

QQ=UUΣΣVVT

The (nxn)-matrix U and the (mxm)-matrix V are orthonormal matrices:

UUUUT=1VVVVT=1

Σ is a diagonal (nxm)-matrix with singular values. The column-vectors of U and V are orthogonal singular vectors. Geometrically, U and V can be interpreted s rotational operations.

Therefore, we can decompose a (nxn) upper triangular shear-matrix into two orthonormal (nxn)-matrices U and V plus a diagonal matrix Σ :

MMsh=UUΣΣVVT

This leads to

MM1sh=[VVT]1ΣΣ1UU1=VVΣΣ1UUT

This gives us an alternative form to define the inverse shear matrix. Note that the order of the matrices in the matrix products is essential.

An example for the case of a sheared ellipse

We use the example of a sheared ellipse discussed in the last post to verify the results above numerically for a 2-dim case. To write a respective Python/Numpy-program is simple. I will just give you my numerical results below.

We have used an ellipse with the longer and shorter primary axes having values a = 2 and b = 1, respectively. The ellipse was rotated by 60° against the ECS-axes.

The respective (2×2)-matrix AAOq had the following coefficients

AAOq=(αo1/2βo1/2βoγo)=(3.251.299038111.299038111.75)

to fulfill

αox2o+βoxoyo+γoy2o=δo=4.0

The shear matrix (with λS = 0.6) was

MMsh=(1.00.60.01.0)

The resulting sheared ellipse became

For an ellipse we have shown that AASq is given by

AASq=(αo1/2(βo2αoλS)1/2(βo2aoλS)αoλ2SβoλS+γo)

From this we get the following numerical values:

A_q^S = 
 [[ 3.25       -3.24903811]
 [-3.24903811  4.47884573]]

Via the Python-statement

M_sh_inv = np.linalg.inv(M_sh)

and

A_q^S_2 = M_sh_inv.T @ A_q @ M_sh_inv

we get the following values

A_q^S_2 = 
 [[ 3.25       -3.24903811]
 [-3.24903811  4.47884573]]

Identical! Using

U_sh, S, Vt_sh = np.linalg.svd(M_sh, full_matrices=True)
S_sh = np.diag(S)
M_sh_2 = U_sh @ S_sh @ Vt_sh
M_sh_inv_2 = Vt_sh.T @ np.linalg.inv(S_sh) @ U_sh.T
A_q^S_2 = M_sh_inv_2.T @ A_q @ M_sh_inv_2

we also reproduce the exactly same values.

Conclusion

We have shown how a shear matrix MMsh transforms the matrix AAOqn which defines an un-sheared n-dimensional ellipsoid into a matrix AASqn defining its sheared counterpart. We have also had a glimpse on a SVD decomposition of a shear matrix. The results will enable us in the next post to apply shear operations on a concrete example of a 3-dimensional ellipsoid.