Skip to content
Snippets Groups Projects
Commit a66b09d2 authored by Erik Strand's avatar Erik Strand
Browse files

Answer 9.1

parent 07d39a0c
Branches
No related tags found
No related merge requests found
...@@ -10,6 +10,44 @@ case Fermat’s Principle: a light ray chooses the path between two points that ...@@ -10,6 +10,44 @@ case Fermat’s Principle: a light ray chooses the path between two points that
travel between them. Apply this to two points on either side of a dielectric interface to derive travel between them. Apply this to two points on either side of a dielectric interface to derive
Snell’s Law. Snell’s Law.
Let there be a dialectic interface along the y axis, between media with indices of refraction
$$n_1$$ (left) and $$n_2$$ (right). The time it takes for light to go from a point $$(x_1, y_1)$$ on
the left to $$(x_2, y_2)$$ on the right, passing through the interface at height $$y$$ is
$$
t = \frac{n_1}{c} \sqrt{x_1^2 + (y_1 - y)^2} + \frac{n_1}{c} \sqrt{x_2^2 + (y_2 - y)^2}
$$
The derivative of this with respect to $$y$$ is
$$
\begin{align*}
\frac{dt}{dy}
&= \frac{-n_1 (y_1 - y)}{c \sqrt{x_1^2 + (y_1 - y)^2}}
+ \frac{-n_2 (y_2 - y)}{c \sqrt{x_2^2 + (y_2 - y)^2}} \\
&= -n_1 \sin \theta_1 + n_2 \sin \theta_2
\end{align*}
$$
since
$$
\sin \theta_1 = \frac{y_1 - y}{\sqrt{x_1^2 + (y_1 - y)^2}}
$$
and
$$
\sin \theta_2 = \frac{y - y_2}{\sqrt{x_2^2 + (y_2 - y)^2}}
$$
(by [SOHCAHTOA](http://mathworld.wolfram.com/SOHCAHTOA.html)). Hence the time of flight is minimized
when
$$
\frac{n_1}{n_2} = \frac{\sin \theta_2}{\sin \theta_1}
$$
## (9.2) ## (9.2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment