-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple.html
More file actions
30 lines (30 loc) · 1001 Bytes
/
Copy pathsimple.html
File metadata and controls
30 lines (30 loc) · 1001 Bytes
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
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/p5@1.4.2/lib/p5.js"></script>
<script>
MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']]
}
};
</script>
<script id="MathJax-script" async
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js">
</script>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<a href="index.html">Home</a>
<hr />
<main>
$$\begin{array}{cc}
v(t)=v_0+gt&\text{velocity}\\
h(t)=v_0t+\frac{1}{2}gt^2&\text{freefall equation of motion}\\
\Delta t_f=\sqrt{\frac{2h}{g}}&\text{time to free-fall}\\
\Delta t_t=\frac{h}{v_t}&\text{time to fall at terminal velocity}\\
v_t=\sqrt{\frac{2mg}{\rho AC_d}}\stackrel{\text{human}}\approx 56\text{ m s}^{-1}&\text{terminal velocity}\\
t_t=\frac{v_t}{g}\stackrel{\text{human}}=5.7\text{ s}&\text{time to reach terminal velocity}
\end{array}$$
</main>
</body>
</html>