Reflections on a sphere

5.1k Views Asked by At

There is a sphere located in a point s with radius r. The Sphere is a perfect mirror. If i'm sitting in the point c, I want to cast a ray to the sphere such that I hit the point p after bouncing in the surface of the sphere. For this, I want to find the point x.

I've had some trouble formulating this problem.

How can I find x?

The point p is always visible (in the reflection) from c.

A formulation in 2D would be enough to begin with.

enter image description here

NOTE

The lines xc and xp do not have the same length. The line sx should be the bisector of the angle xcp.

I need to solve this problem analytically, can't use numeric methods to approximate the solution.

5

There are 5 best solutions below

1
On

Hint. Find line $l_1$ that goes through $C$ and $X$, $l_2$ through $P$ and $X$ and tangent line $l_3$ to the circle in $X$. Then write that the angle between $l_1$ and $l_3$ is equal to the angle between $l_2$ and $l_3$.

3
On

Find the bisector of $\angle{CSP}$, then point X is the intersection of this bisector with the circle/sphere.

Note: Above simple answer only works when point C and P are symmetric to center S.

In general, the vector $\vec{SX}$ bisects $\angle{CXP}$ (not $\angle{CSP}$). So, to find point X, represented as $X=S+(rcost,rsint)$, we have to solve for the following equation:

$\frac{\overrightarrow{XC}}{|\overrightarrow{XC}|}\cdot \vec{n} = \frac{\overrightarrow{XP}}{|\overrightarrow{XP}|}\cdot \vec{n} $

, where $\vec{n}=\frac{\overrightarrow{SX}}{|\overrightarrow{SX}|}$

It is not easy to solve for point X from this equation analytically. But you can do that numerically.

2
On

here is my attempt at a solution for the two dimensional case. i will take the circle to be centred at the origin and have radius $r.$ i will take $c = (c_1, c_2)^T, p = (p_1, p+2)^T, x = (r\cos t, r\sin t)^T$ we will determine $t$ subject to the constraint that the line $OS$ bisects $\angle CSP$

$$ \dfrac{ c\cdot x - r}{p \cdot x - r}= \dfrac{(c-x) \cdot x}{(p-x) \cdot x} = \dfrac{\lvert c - x \rvert \lvert x \rvert \cos \angle CSO}{ \lvert p - x \rvert \lvert x \rvert \cos \angle PSO} = \dfrac{\lvert c - x \rvert}{ \lvert p - x \rvert} $$

we need to solve $$\dfrac{ c\cdot x - r}{p \cdot x - r}= \dfrac{\lvert c - x \rvert}{ \lvert p - x \rvert} \text{ for } t. \tag 1$$

let $c.x = r|c|\cos(t+\alpha), p.x = r|p|\cos(t+\beta).$ then the previous equation (1) becomes $${\left( \dfrac{|c|\cos(t+\alpha)}{|p|\cos(t + \beta)} \right)}^2 = \dfrac{|c|^2 - 2r|c|\cos(t + \alpha)+r^2}{|p|^2 - 2r|p|\cos(t + \beta)+r^2} \tag 2$$

1
On

It seems that “Computing a Point of Reflection on a Sphere” was done by David Eberly and it needs to compute roots of a quartic polynomial.

0
On

It can be shown that the point of specular reflection on the sphere provided two focal points lying outside of it is always given by a quartic polynomial equation. In the case where all solutions are distinct, each solution corresponds respectively to an external, internal and external-internal or internal-external reflection. For the construction of an approximation of the point of interest using a geometric algorithm employing compass and ruler constructions and the error associated see https://arxiv.org/abs/1703.06768