Let v ( t ) = ⎣ ⎡ x ( t ) y ( t ) z ( t ) ⎦ ⎤
If
d t d v ( t ) = A v ( t )
where
A = ⎣ ⎡ − 0 . 1 7 5 0 . 3 5 0 . 5 2 5 0 − 0 . 3 0 0 . 1 7 5 0 . 2 5 − 0 . 5 2 5 ⎦ ⎤
And v ( 0 ) = ⎣ ⎡ 1 2 4 ⎦ ⎤
Determine the area swept by the vector v ( t ) − v ( 0 ) from t = 0 to t = ∞ .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
As before, the matrix A has eigenvalues − 1 0 7 , − 1 0 3 and 0 , with corresponding eigenvectors ⎝ ⎛ 1 1 − 3 ⎠ ⎞ ⎝ ⎛ 0 1 0 ⎠ ⎞ ⎝ ⎛ 1 2 1 ⎠ ⎞ Thus e A t ⎝ ⎛ 1 1 − 3 ⎠ ⎞ = e − 1 0 7 t ⎝ ⎛ 1 1 − 3 ⎠ ⎞ e A t ⎝ ⎛ 0 1 0 ⎠ ⎞ = e − 1 0 3 t ⎝ ⎛ 0 1 0 ⎠ ⎞ e A t ⎝ ⎛ 1 2 1 ⎠ ⎞ = ⎝ ⎛ 1 2 1 ⎠ ⎞ Since v ( 0 ) = ⎝ ⎛ 1 2 4 ⎠ ⎞ = − 4 3 ⎝ ⎛ 1 1 − 3 ⎠ ⎞ − 4 3 ⎝ ⎛ 0 1 0 ⎠ ⎞ + 4 7 ⎝ ⎛ 1 2 1 ⎠ ⎞ we have v ( t ) = e A t v ( 0 ) = − 4 3 e − 1 0 7 t ⎝ ⎛ 1 1 − 3 ⎠ ⎞ − 4 3 e − 1 0 3 t ⎝ ⎛ 0 1 0 ⎠ ⎞ + 4 7 ⎝ ⎛ 1 2 1 ⎠ ⎞ The vector v ( t ) − v ( 0 ) is always perpendicular to ( 3 , 0 , 1 ) T , and it traces a planar curve, which can be described parametrically in terms of components (calculated by finding two mutually perpendicular unit vectors that are normal to ( 3 , 0 , 1 ) T ): X ( t ) Y ( t ) = [ v ( t ) − v ( 0 ) ] ⋅ 1 4 1 ⎝ ⎛ 1 2 − 3 ⎠ ⎞ = [ v ( t ) − v ( 0 ) ] ⋅ 3 5 1 ⎝ ⎛ 1 − 5 − 3 ⎠ ⎞ Plotting Y parametrically against X gives the shape of the region swept out by v ( t ) − v ( 0 ) :
and the area of this region is ∫ 0 ∞ X ′ ( t ) Y ( t ) d t = 8 0 9 1 0 = 0 . 3 5 5 7 5 6
Problem Loading...
Note Loading...
Set Loading...
Here is my numerical attempt. Let the solution at time t be r 1 = v ( t ) . Let the solution after a time t + δ t be r 2 = v ( t + δ t ) . Using a little bit of imagination, the vectors r 1 − v ( 0 ) , r 2 − v ( 0 ) and the elementary arc length vector joining these two vector tips form a triangle. The elementary area of the triangle is the area swept and is given by:
δ A S = 2 ∣ ( r 1 − v ( 0 ) ) × ( r 2 − v ( 0 ) ) ∣ δ A S = 2 ∣ ( v ( t ) − v ( 0 ) ) × ( v ( t + δ t ) − v ( 0 ) ) ∣
From here, I have just written a short script of code for the further evaluation: