I need to determine the reflections of several points across different lines to solve a problem in electrostatics. So far, my approach has been to determine the equations of the line-segments uniting the points (A, A'), the equation for the axis of reflection, the point of intersection of the two (X) and adding to my initial point (A) the vector: $2\vec{AX}$.
However, since I need to repeat this 5 times, I was wondering - is there a more "systematic" way to determine the images of points under reflection?
You can instead use a reflection matrix: $$R(\theta)=\begin{pmatrix} \cos(2\theta) & \sin(2\theta)\\ \sin(2\theta) & -\cos(2\theta) \end{pmatrix}$$
where $\theta$ is the angle that axis of reflection makes with the x-axis (assuming it crosses the origin, if not you must first add the coordinates of the point at which it crosses the y-axis - which corresponds to making a translation, followed by a reflection.
So the coordinates of the reflected point will be $\vec r_0' = \vec r_0 \cdot R(\theta)$, where $\vec r_0$ are the coordinates of your first point.
Geogebra has a neat online app that allows you to calculate the reflection matrix and check your results.