Yes, that looks right! Good job.

Click For Summary
SUMMARY

The discussion centers on the linear transformation L: R3 -> R3, which involves a dilation by a factor of 3 for points in the plane defined by z = 0 and a contraction along the line L = span({(1,0,0)}) by a factor of 3. Participants clarify the correct interpretation of the transformation, emphasizing that L should be represented as a 3x3 matrix. The final matrix representation of L is confirmed as [L] = [3, 0, 1/3; 0, 3, 0; 0, 0, 1/3].

PREREQUISITES
  • Understanding of linear transformations in vector spaces
  • Familiarity with matrix representation of linear mappings
  • Knowledge of dilation and contraction concepts in geometry
  • Proficiency in using LaTeX for mathematical notation
NEXT STEPS
  • Study the properties of linear transformations in R3
  • Learn how to derive transformation matrices for various linear mappings
  • Explore the effects of dilation and contraction on geometric shapes
  • Practice using LaTeX for formatting mathematical equations and matrices
USEFUL FOR

Students of linear algebra, mathematicians working with transformations, and educators teaching vector space concepts will benefit from this discussion.

Snoogx
Messages
22
Reaction score
0

Homework Statement



L:R3->R3 is a dialiation by a factor of 3 of points in the plane W given by the equation z = 0 and a contraction along the line L = span({(1,0,0)}) by a factor of 3.
Find [L], but I'm mainly concerned with finding L(e31)


Homework Equations



z = 0
L(1,0,0) = (3,0,0)
L(0,1,0) = (0,3,0)
L(span(1,0,1)) = (1/3,0,1/3)


The Attempt at a Solution



L(e1) = a(1,0,0) + b(0,1,0) + c(1,0,1)
e1 = aL(1,0,0) + bL(0,1,0) + cL(1,0,1)
e1 = a(3,0,0) + b(0,3,0) + c(1/3,0,1/3)
e1 = [(3,0,0),(0,3,0),(1/3,0,1/3)][a,b,c]
[(1/3,0,0),(0,1/3,0),(-1/3,0,3)]e1 = [a,b,c]
[(1/3,0,0),(0,1/3,0),(-1/3,0,3)][1,0,0] = [a,b,c]
[a,b,c] = [1/3,0,0]

Can anyone check my work?
 
Physics news on Phys.org
Snoogx said:

Homework Statement



L:R3->R3 is a dialiation by a factor of 3 of points in the plane W given by the equation z = 0 and a contraction along the line L = span({(1,0,0)}) by a factor of 3.
Would you please recheck the problem? The line, L, is in the plane, W. You can't "dilate by a factor of 3" and "contract by a factor of 3" the same points!

Find [L], but I'm mainly concerned with finding L(e31)


Homework Equations



z = 0
L(1,0,0) = (3,0,0)
L(0,1,0) = (0,3,0)
L(span(1,0,1)) = (1/3,0,1/3)
Aha! L is spanned by (1, 0, 1), not (1, 0, 0). But you don't mean to say "L(span(1,0,1))= (1/3,0,1/3)" What is true is that L(1, 0, 1)= (1/3, 0, 1/3) and that L(a, 0, a)= (a/3, 0, a/3) for any a.

The Attempt at a Solution



L(e1) = a(1,0,0) + b(0,1,0) + c(1,0,1)
e1 = aL(1,0,0) + bL(0,1,0) + cL(1,0,1)
e1 = a(3,0,0) + b(0,3,0) + c(1/3,0,1/3)
e1 = [(3,0,0),(0,3,0),(1/3,0,1/3)][a,b,c]
[(1/3,0,0),(0,1/3,0),(-1/3,0,3)]e1 = [a,b,c]
[(1/3,0,0),(0,1/3,0),(-1/3,0,3)][1,0,0] = [a,b,c]
[a,b,c] = [1/3,0,0]

Can anyone check my work?
Looks like a good start- but you don't want just "a b c", you are looking for a 3 by 3 matrix. In a slightly better notation (using LaTeX)
[tex][L]= \begin{bmatrix}a & b & c \\ d & e & f \\ g & h & i\end{bmatrix}[/tex]
So
[tex][L]e_1= \begin{bmatrix}a & b & c \\ d & e & f \\ g & h & i\end{bmatrix}\begin{bmatrix}1 \\ 0 \\ 0 \end{bmatrix}= \begin{bmatrix}a \\ d\\ g\end{bmatrix}= \begin{bmatrix}3 \\ 0 \\ 0\end{bmatrix}[/tex]

Similarly
[tex][L]e_2= \begin{bmatrix}a & b & c \\ d & e & f \\ g & h & i\end{bmatrix}\begin{bmatrix}0 \\ 1 \\ 0\end{bmatrix}= \begin{bmatrix} b \\ e \\ i\end{bmatrix}= \begin{bmatrix}0 \\ 3\\ 0\end{bmatrix}[/tex]

Finally, we have
[tex][L]e_2= \begin{bmatrix}a & b & c \\ d & e & f \\ g & h & i\end{bmatrix}\begin{bmatrix}1 \\ 0 \\ 1\end{bmatrix}= \begin{bmatrix} a+ c \\ d+ f \\ g+ h\end{bmatrix}= \begin{bmatrix}1/3 \\ 0\\ 1/3\end{bmatrix}[/tex]
 
Last edited by a moderator:
HallsofIvy said:
Would you please recheck the problem? The line, L, is in the plane, W. You can't "dilate by a factor of 3" and "contract by a factor of 3" the same points!

That's exactly what the problem said. I believe it means that the line is contracted by a factor of 3 only and the points are dilated by 3.

Aha! L is spanned by (1, 0, 1), not (1, 0, 0). But you don't mean to say "L(span(1,0,1))= (1/3,0,1/3)" What is true is that L(1, 0, 1)= (1/3, 0, 1/3) and that L(a, 0, a)= (a/3, 0, a/3) for any a.

What I had thought was that I was supposed to pick 2 points from W and then use the span as the third point. And then like you did set [L]en = xnvn; where v is the vectors and x is the dilate/contract.

Looks like a good start- but you don't want just "a b c", you are looking for a 3 by 3 matrix. In a slightly better notation (using LaTeX)
[tex][L]= \begin{bmatrix}a & b & c \\ d & e & f \\ g & h & i\end{bmatrix}[/tex]
So
[tex][L]e_1= \begin{bmatrix}a & b & c \\ d & e & f \\ g & h & i\end{bmatrix}\begin{bmatrix}1 \\ 0 \\ 0 \end{bmatrix}= \begin{bmatrix}a \\ d\\ g\end{bmatrix}= \begin{bmatrix}3 \\ 0 \\ 0\end{bmatrix}[/tex]

Similarly
[tex][L]e_2= \begin{bmatrix}a & b & c \\ d & e & f \\ g & h & i\end{bmatrix}\begin{bmatrix}0 \\ 1 \\ 0\end{bmatrix}= \begin{bmatrix} b \\ e \\ i\end{bmatrix}= \begin{bmatrix}0 \\ 3\\ 0\end{bmatrix}[/tex]

Finally, we have
[tex][L]e_2= \begin{bmatrix}a & b & c \\ d & e & f \\ g & h & i\end{bmatrix}\begin{bmatrix}1 \\ 0 \\ 1\end{bmatrix}= \begin{bmatrix} a+ c \\ d+ f \\ g+ h\end{bmatrix}= \begin{bmatrix}1/3 \\ 0\\ 1/3\end{bmatrix}[/tex]

I know I'm looking for the whole matrix, I was just concerned with L(e1) for the moment. What I had thought was that I would just apply the same steps for L(e2) and L(e3).

I'm still a little confused when you calculated [L]e2. For the last one, I'm not sure if you meant [L]e3 or [L]e2?

So would this make the matrix [L] = [tex]\begin{bmatrix}3 & 0 & 1/3 \\ 0 & 3 & 0 \\ 0 & 0 & 1/3\end{bmatrix}[/tex] ?
 

Similar threads

  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 26 ·
Replies
26
Views
4K
  • · Replies 24 ·
Replies
24
Views
3K
  • · Replies 6 ·
Replies
6
Views
4K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
3K