Skip to content

Commit 36e7573

Browse files
committed
Update README.md
1 parent bc2a97f commit 36e7573

File tree

1 file changed

+34
-8
lines changed

1 file changed

+34
-8
lines changed

README.md

+34-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
# Photon Reflection #
22

3-
Photon starts moving to the right from point `(0.50, 0.26)` in a grid lattice with a circular mirror in each point (`R=1/3`) - see [Visualization](https://github.com/LMesaric/PhotonReflection#visualization).
4-
The speed of a photon is `1 point per second`. Where will the photon be located after `20 seconds`?
3+
Photon starts moving to the right from point `(0.50, 0.26)` in a grid lattice with a circular mirror
4+
in each point (`R = 1/3`) - see [Visualization](https://github.com/LMesaric/PhotonReflection#visualization).
5+
The speed of the photon is `1 point per second`. Where will the photon be located after `t = 20 seconds`?
56

6-
Solving this problem comes down to calculating the reflected line after interaction with the circle. All calculations must be done with very high precision.
7+
Solving this problem comes down to calculating the reflected line after interaction with the circle.
8+
All calculations must be done with very high precision - see
9+
[Result dependency on precision](https://github.com/LMesaric/PhotonReflection#result-dependency-on-precision).
710

11+
Algorithm used in this project does **not** use any trigonometric functions nor angles between lines.
12+
The only _problematic_ part is calculating the square root, but that can easily be done in arbitrary precision.
813

9-
## Photon reflections and final result ##
14+
## Points of reflection and final result ##
1015

11-
Calculating with `100` significant digits, these are the points of reflection (except for 1<sup>st</sup> and 18<sup>th</sup>) rounded to `6` decimal places.
16+
These are the points of reflection (impact), except for 1<sup>st</sup> and 18<sup>th</sup> point,
17+
rounded to `6` decimal places. All decimal places are correct.
1218

1319
1. (+0.500000, +0.260000) - START
1420
2. (+0.791407, +0.260000)
@@ -37,9 +43,14 @@ Calculating with `100` significant digits, these are the points of reflection (e
3743

3844
## Result dependency on precision ##
3945

40-
Final points calculated with different values of `N` are listed below. `N` is the number of significant digits used in all calculations.
46+
Final points calculated with different values of `N` are listed below.
47+
`N` is the number of significant digits used in all calculations.
4148

42-
It is important to notice that a `double` variable can store up to `15` stable decimal places, meaning that for values in range `<-100, 100>` it can store only `17` significant digits. That is the exact `N` at which a large computation error occurs. For this kind of calculations, one must use data types capable of storing numbers in very high precision, such as `BigDecimal` used in this project.
49+
It is important to notice that a `double` variable can store up to `15` stable decimal places,
50+
meaning that for values in range `<-100, 100>` it can store only `17` significant digits.
51+
That is the exact `N` at which a large computation error occurs.
52+
For this kind of calculations, one must use data types capable of storing numbers in very high precision.
53+
_Java_'s `BigDecimal` type was used in this project.
4354

4455
N = 50000 => (+4.094557, -0.360327) - correct result
4556
N = 24 => (+4.094557, -0.360327) - correct result
@@ -54,10 +65,25 @@ It is important to notice that a `double` variable can store up to `15` stable d
5465
N = 15 => (+6.551874, +1.408657)
5566
N = 14 => (+5.776366, -4.158442)
5667

68+
A small error in locating the impact point will make an error in the equation of the reflected line,
69+
which will propagate to the next collision with a lever arm of the free path. Even with exact mathematical equations,
70+
numerical errors will occur due to limited calculation precision. These errors will soon accumulate resulting in
71+
critical errors such as completely missing a mirror which should have been hit.
72+
Using symbolic calculations might seem like a good solution at first, but after just a few reflections
73+
the expressions become incredibly complex and calculations are slowed down. Evaluating the final expression on its own
74+
might result in large errors due to possible numerical instability.
5775

5876

5977
## Visualization ##
6078

61-
Image below illustrates the entire problem and solution. Each of the reflection points is labeled with a number, from `1` to `18`. Connect the dots to get the photon's trajectory.
79+
Image below illustrates the entire problem and solution for `t=20s`. Each of the reflection points is
80+
labeled with a number, from `1` to `18`. Connecting the dots in order will give you the photon's trajectory.
6281

6382
![Desmos graph](https://raw.githubusercontent.com/LMesaric/PhotonReflection/master/images/PhotonReflection.png)
83+
84+
## Increasing the time frame ##
85+
86+
Let us increase the time frame from `t=20s` to `t=200s`, keeping all other parameters the same.
87+
At that exact moment the photon will be positioned over point `(-15.454298, -7.616898)`.
88+
This result will be consistently achieved for `N=140` and higher. It is quite obvious that using double precision
89+
will produce completely unpredictable outcomes.

0 commit comments

Comments
 (0)