How can I reflect a vector in a line without using the origin?

Gregg
Messages
452
Reaction score
0

Homework Statement



To find a transformation that reflects a vector in a line that does not pass through the origin.


The Attempt at a Solution



I've been trying to work this out for a little while and I found that I can do it if I use the vector for the 2d transformation with a 3x3 matrix for x = a (below) and y=a similarly. But y=ax + b I cannot do. I cannot see a way to do this just as I can't see a way to rotate around a point other than the origin.

\left[ \begin{array}{ccc} -1 &0 &2a \\0 &1 &0 \\0 &0 &1 \\ \end{array}\right] \left[ \begin{array}{c} x \\ y \\ 1 \end{array} \right] = \left[ \begin{array}{c} -x+2a \\ y \\ 1 \end{array} \right]


Where do I start?
 
Physics news on Phys.org
I'll give you a hint for rotating around a point other than the origin: The origin is just that, a point. You can perform a coordinate transformation to reduce the case of a point not at the origin to the case at the origin. If you understand that methodology, you should also be able to reflect about lines that don't pass through the origin.
 
ie as wretchosoft is implying first apply a translation to make your line pass through the origin
\textbf{x'} = T_a(\textbf{x}) = \textbf{x} + \textbf{a}
then apply your reflection matrix
R_f(\textbf{x'}) = R.\textbf{x'}

and translate back, then your whole tranformation should be something like
T_{-a} \circ R_f \circ T_a(\textbf{x})
 
Prove $$\int\limits_0^{\sqrt2/4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx = \frac{\pi^2}{8}.$$ Let $$I = \int\limits_0^{\sqrt 2 / 4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx. \tag{1}$$ The representation integral of ##\arcsin## is $$\arcsin u = \int\limits_{0}^{1} \frac{\mathrm dt}{\sqrt{1-t^2}}, \qquad 0 \leqslant u \leqslant 1.$$ Plugging identity above into ##(1)## with ##u...
Back
Top