Transforming a line segment with matrices?

  • Thread starter Thread starter mneox
  • Start date Start date
  • Tags Tags
    Line Matrices
AI Thread Summary
To transform the line segment A = {(0,y) | 0<y<1} using matrices X and Y, one must multiply these matrices by the position vectors of the segment's endpoints. The transformation will yield new line segments, as linear transformations maintain the linearity of the original segment. The endpoints of segment A are (0,0) and (0,1), but since the segment is open, these points are excluded from the set. Understanding the concept of position vectors is crucial, as they represent the coordinates of points in the transformation process. The discussion emphasizes the importance of identifying endpoints and applying matrix multiplication correctly to visualize the transformed images.
mneox
Messages
35
Reaction score
0

Homework Statement



If you have the matrix X = [ 1 1; 1 0] and Y = [ 0 -1; 1 0] and line segment A = {(0,y) | 0<y<1}

Draw the images of line segment after you transform it by matrix X, Y, XY, YX
(the image of A after transformation by linear transformation of L is {L(a) | all a in A}

Homework Equations



T = A(x)
not sure if this is applicable here...

The Attempt at a Solution



what are you supposed to do for this? I'm confused.. thanks!

what are "images"? and how do you transform with matrices.. is it just multiplying?

sorry i am just confused really badly :s
thanks for your help and time
 
Physics news on Phys.org
Yes, transformation of a point by matrix means you have to multiply the matrix with the radius-vector for the points in the line segment. When drawing the images, it may help you to know that since the transformation is linear the line segment will always be transformed into another line segment, so you only really have to transform the end points to get the image.
 
Filip Larsen said:
Yes, transformation of a point by matrix means you have to multiply the matrix with the radius-vector for the points in the line segment. When drawing the images, it may help you to know that since the transformation is linear the line segment will always be transformed into another line segment, so you only really have to transform the end points to get the image.

Thanks for the reply!

I see, but which part is this radius-vector though? Is it the (0,y) from A = {(0,y) | 0<y<1}? How do you know what value of y to use..?

Could you explain what A = {(0,y) | 0<y<1} even means?

I feel like I'm on the verge of grasping this but at the same time I'm lost. Thanks.
 
What points do (0,y) "translate" to when y varies from 0 to 1? Can you plot those points in a diagram? You should get a line segment, that is, a line with a start and end point. Can you give the coordinates of those end-points?

Notice, that with the y interval defined as it is with 0<y<1, the end-points themselves are not considered part of the open line segment, that is, the set A is the line segment between the two end-points but excluding the end-points themselves. You can treat them like normal end-points if you just remember that the are excluded from the images as well.
 
The "radius vector" Filip Larson mentioned in his first post is probably the "position vector" of a point which is the vector from (0, 0) to the point. It's components are the same as the coordinates of the point. That is, the position vector for (0, 0), at one end of the segment, is just the 0 vector= <0, 0> and the position vector of (0, 1), at the other end is \vec{i}= <0, 1>.

The line segment X maps A into is the line segment having endpoints
\begin{bmatrix}1 &amp; 1 \\ 1 &amp; 0\end{bmatrix}\begin{bmatrix}0 \\ 0\end{bmatrix}
and
\begin{bmatrix}1 &amp; 1 \\ 1 &amp; 0\end{bmatrix}\begin{bmatrix}0 \\ 1\end{bmatrix}
 
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Back
Top