-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemp.Rmd
41 lines (33 loc) · 997 Bytes
/
temp.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
title: "Heptagonal Orbits in Elliptic Billards: Loci of X(1)~X(100) for Internal Triangles"
author: Dan Reznik
date: May, 2019
output:
bookdown::html_document2:
theme: flatly
link-citations: yes
bibliography: elliptic_billiards.bib
csl: computer.csl
---
```{r,echo=F}
knitr::opts_chunk$set(
cache=T,
collapse=T,
comment="#>",
dpi=600,
fig.align="center",
out.width='100%'
)
```
Consider the family of non-intersecting, Heptagonal ($N=7$) orbits in an elliptic billiard, $a/b=1.5$. Each orbit will contain 4 distinct subtriangles (up to cyclic symmetry), e.g., defined by vertices 123, 124, 125 and 135:
```{r,echo=F,out.width="100%"}
knitr::include_graphics("subtris/subtris_N=7.png")
```
Each row below depicts the locus of $X(i)$, $i=1,2,\ldots 100$ for those subtriangles shown combined and separately.
```{r,echo=F}
fnames <- as.character(fs::dir_ls("loci_hept_all"))
```
```{r,echo=F}
knitr::include_graphics(fnames)
```
Go back to [main page](index.html).