Author: Christian Sorensen c.sorensen2002@gmail.com
Adjoint Operators The adjoint of an operator (also known as Hilbert adjoint, not to be confused with the adjugate or adjoint matrix) is a linear operator that, “undoes” a corresponding operator. If operator A takes a vector from space S1 and maps it to space S2, the adjoint maps a vector from S2 back to S1.
The definition is given as <Ax,y>=<x,A*y> where A* is the adjoint
of the operator A. While most engineering students are used to seeing
matrix adjoints (transposes), any linear operator can have an adjoint. A
given operator may not have an adjoint. Adjoints are important because
their range and null spaces make up 2 of the 4 fundamental subspaces of
the operator.
Mathematical Definition:
<Ax,y>=<x,A∗y>; A∗ is the adjoint of A
Properties of the adjoint (in a Hilbert space):
(A1+A2)∗=A∗1+A∗2
(aA)∗=¯aA∗ (where ¯a is the complex conjugate of a)
(A2 A1)∗=A∗1A∗2 (The order has been reversed, similar to inversion)
If ∃ A−1, (A−1)∗=(A∗)−1
An operator is said to be self adjoint (Hermetian) if the following is true:
A=A∗While all operators may have an adjoint, from here on out the adjoint will be applied strictly to matrices, although some of the definitions may apply more generally. (Everything up to this point is applicable to all linear operators and their adjoints) For matrices the following are true:
∀ A ϵ RNxN, A∗=ATand ∀ A ϵ CNxN,A∗=AHSimple Numerical Example:
For A= (1−1−23), find A∗Matlab Implementation
The matlab implementation of the adjoint for a matrix is simple. Let A be a matrix, then the adjoint of that matrix can be calculated by A'
Engineering application:
Inverse kinematics of a robotic manipulator with redundant degrees of freedom.
In robotics the Jacobian is the matrix that describes the transformation between Joint and task space. For an n DOF robot it will look something like the following:
(˙x˙y˙z˙α˙β˙γ)=(J11⋯J1n⋮⋱⋮J61⋯J6n)(˙q1˙q2⋮˙qn)Where the LHS of the equation are the cartesian velocities of the end effector of the robot, and the ˙q vector is the robots joint velocities.
In the case of a 7+ DOF robot, the robot is kinematically redundant, there are more joint states then cartesian states, meaning there are multiple joint configurations that give the same cartesian pose.
The inverse kinematics problem is as follows—given a desired cartesian pose determine the joint configuration of the robot. This problem is stated as:
˙ξ=J˙qDue to the redundancy, there is no matrix inverse J−1 that can be used to solve the problem exactly. This is where the adjoint of the Jacobian comes into play.
We need to choose a specific ˙q vector, and it is convenient to choose the ˙q vector that with minimum norm, because the energy associated with a movement increases with the square of the ˙q vector.
Expressing the constraint mathematically leads to the following solveable problem:
Choose a vector ˙q s. t. ˙ξ=J˙q and ‖˙q‖2 is minimized.
Let n∈N(J) and let ˙q0 be a solution of ˙ξ=J˙q. This means that ˙q0+n is also a solution of ˙ξ=J˙q. Because we are operating inside of a Hilbert space, there is a unique vector that satisfies the equation with minimum norm.
That solution will have n=0 or in otherwords will be orthogonal to N(J).
Understanding the fundamental theorem of linear algebra (see the associated chapter in the jupyter notebook titled 4 fundamental subspaces) gives that [N(J)]⊥=R(J∗)=R(JT) .
This means the minimum-norm solution of our equation is
˙q∈R(JT)=JTzWhere z is given as the solution of (JJT)z=˙ξ
If we take the inverse of (JJT), whose existance can be proven as long as the jacobian isn’t singular, we can solve for ˙q.
˙q=JT (JJT)−1˙ξAdd a homework assignment that might take 10 minutes to complete. Make sure you can work the problem yourself, but you do not need to submit a solution to the problem.