Let {y1,y2,...,ym} be linearly independent vectors in a Hilbert space S. Let M=span(y1,y2,...,ym). The element x∈S that satisfies the constraints:
⟨x,y1⟩=b1⋮⟨x,ym⟩=bmand which has minimum norm is also in M. x is given by: x=m∑i=1ciyi
For a proof of this theorem, see pp. 179-181 in Moon's book.
The matrix [⟨yj,yi⟩] is also known as the Gramian. If A is of the form: A=[yH1⋮yHm]
An underdetermined system of equations is one with fewer equations than variables. Recall that for this type of system, there are two possibilities: an infinite number of solutions or no solution (if the equations are inconsistent). Here, we will address the case of an infinite number of solutions.
In array form, the problem is formulated as Ax=b, where A is an m×n matrix, with m<n.
Let's take the system: [123531][xyz]=[02]
This can be thought of as two planes in R3, given by: x+2y+3z=0
It can be shown algebraically that the intersection of these planes is a line given by: {x=ty=67−2tz=−47+t∀t∈R
# Visualize the intersection of 2 planes
import numpy as np
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
A = np.array([(1,2,3),(5,3,1)])
b = np.array([(0),(2)])
fig = plt.figure()
ax = fig.gca(projection='3d')
# data for planes
x1 = np.arange(-10,10,0.25)
y1 = np.arange(-20,20,0.25)
x1, y1 = np.meshgrid(x1, y1)
z1 = (b[0] - A[0,0]*x1 - A[0,1]*y1) / A[0,2]
x2 = np.arange(-10,10,0.25)
y2 = np.arange(-20,20,0.25)
x2,y2 = np.meshgrid(x2,y2)
z2 = (b[1] - A[1,0]*x2 - A[1,1]*y2) / A[1,2]
# line
tL = np.arange(-10,10,0.25)
xL = tL
yL = 6/7 - 2*tL
zL = -4/7 + tL
ax.plot_surface(x1, y1, z1)
ax.plot_surface(x2, y2, z2)
ax.plot(xL, yL, zL)
ax.view_init(elev=35., azim=-65)
plt.show()
Rather than finding all possible solutions for x, we will choose the solution that has the minimum norm.
ˆx=AH(AAH)−1bˆx=[0.38100.0952−0.1905]fig2 = plt.figure()
ax2 = fig2.gca(projection='3d')
ax2.plot(xL, yL, zL, c='g')
ax2.scatter(0.3810, 0.0952, -0.1905, c='r')
ax2.view_init(elev=30, azim=30)
plt.show()
This was a simple finite-dimensional example, but the concept extends to infinite dimensional spaces. If there are a finite number of constraints that can be written as inner products, then it can be framed in terms of the dual approximation theorem.
Some problems involving sets of continuous functions can be solved with finite matrices although the solutions are in an infinite dimensional space, as long as the constraints can be written as inner products and the solution space is a Hilbert space, such as L2.
Suppose you know the dynamics of a system to be: ¨y+5˙y+6y=7˙u+u
We'd like to find the input u(t) from t=0 to t=5 that will move the system to position y=10 with the least amount of energy, and also with the condition that ∫50u(t)dt=0.
The energy of a signal u(t) is ∫T0||u(t)||2dt
Since we're solving for u, we want to write inner product constraints in the form: ⟨u,y1⟩=b1⟨u,y2⟩=b2
The final position constraint can be written as y(5)=10=⟨u(t),h(5−t)⟩, since this L2 norm is the convolution integral.
The last condition can be written as ⟨u(t),1⟩=0.
We have b=[100] from these constraint equations.
h(t) can be found by finding Y(s)/U(s) in the Laplace domain on the dynamics equation, and then going back to time domain. Letting y1=h(5−t) and y2=1, we can calculate the needed inner products for the Gramian, then solve algebraically for c1 and c2.
Then u(t) is simply a linear combination of y1 and y2: u(t)=c1y1+c2y2
by Kavindu Kusal Assume that you are the project manger of a software development project, which has been estimated for $40,000 salary plus operational cost and you are going to come up with a team of 12 which consisists of interns, engineers, senior engineers and team leaders. Project has been budgeted for 1000 engineering hours and you can assume that as a thumb rule, an intern would take 1h 15min for a work completed by and engineer and senior engineer, team leader would take 45 and 30 mins respectively. So, the operational cost of the project is propotional to the norm of the group. It is expected to pay $25, $35, $45, $55 per hour for intern, engineer, senior engineer and team leader respectively. using dual approximation come up with a suitable team structure to minimize the operational cost of the project.
According to the description, company could pay $40,0001000=$40
#python implementation of this problem would be like this
import numpy as np
c1 = np.array([1, 1, 1, 1])
projHrscompletedbyteamPerHr = np.array([ 1./1.25, 1./1., 1/0.75, 1/0.5 ])
affordableHourlyCost = 30 * projHrscompletedbyteamPerHr
actualTeamHourLyCost = np.array([25, 35, 45, 55])
c2 = affordableHourlyCost - actualTeamHourLyCost
grammian = np.array([[c1 @ c1, c1 @ c2],
[c2 @ c1, c2 @ c2]])
b = np.array([[12], [0]])
c = np.linalg.inv(grammian) @ b
x = c[0,0]*c1 + c[1,0]*c2
print(x)
[3.13432836 2.05970149 2.05970149 4.74626866]
So, in order to not to exceed the limit, I would go with a team of 4 interns, 2 Engineers, 2 Senior Engineers and 4 Project Managers to minimize the overall operation cost of the project.