asked 82.2k views
1 vote
How do I write transformations? More specifically how would I show how a line is being shifted up and down and how can I show said line is being reflected?

asked
User Helpful
by
8.2k points

1 Answer

6 votes

Given an arbitrary line with gradient m, that passes through a point (x1, y1)

The equation of the line is

y - y1 = m( x - x1)

To shift the line up by g units

Then, the new equation becomes

y - y1 + g = m(x - x1)

To shift the line down by g units

Then, the new equation becomes

y - y1 - g = m(x - x1)

Taking the axis of reflection as x = 0

The reflection of the line is

-y - y1 = m( x - x1)

Taking the axis of reflection as y = 0

The reflection of the line is

y - y1 = m( -x - x1)

No related questions found

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.