-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLecture1ASlide38.html
More file actions
139 lines (114 loc) · 5.49 KB
/
Copy pathLecture1ASlide38.html
File metadata and controls
139 lines (114 loc) · 5.49 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="favicon.png" type="image/x-icon">
<title>Leibnitz's Theorem</title>
<link rel="stylesheet" href="styles.css">
<!-- Include MathJax for LaTeX Rendering -->
<script>
window.MathJax = {
tex: {
packages: ['base', 'ams'] // loads AMS by default
}
};
</script>
<script async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js"></script>
<style>
.custom-list {
list-style: none; /* Remove default bullets */
padding-left: 20px; /* Adjust indentation */
}
.custom-list li {
position: relative;
padding-left: 20px; /* Space for custom bullet */
text-align: left; /* Align text to the left */
}
.custom-list li::before {
content: "■"; /* Unicode for small square */
color: #7DCDF4; /* Adjusted to match the blue color */
font-size: 14px; /* Adjust size */
position: absolute;
left: 0;
top: 2px; /* Align with text */
}
.image-container {
display: flex;
align-items: center;
justify-content: center;
text-align: left;
}
.image-container img {
max-width: 110%;
height: auto;
}
.image-text {
max-width: 110%;
padding-left: 20px;
font-size: 16px;
}
.bullet::before {
content: "■ ";
color: #7DCDF4;
}
</style>
<script>
function scaleContainer() {
const container = document.querySelector('.container');
const padding = 0; // optional padding margin
const viewportHeight = window.innerHeight - padding;
const containerHeight = container.offsetHeight;
// Compute the scale ratio
const scale = Math.min(1, viewportHeight / containerHeight);
container.style.transform = `scale(${scale})`;
}
// Run on load
window.addEventListener('load', scaleContainer);
// Run on resize
window.addEventListener('resize', scaleContainer);
</script>
<script src="exit.js" defer></script>
</head>
<body>
<div class="container">
<div class="title">Leibnitz's Theorem</div>
<div class="slide">
<div class="description">
<p>
Consider a function \( F \) that depends on one independent spatial variable, \( x \), and time \( t \). In addition assume that the time derivative of its integral is of interest when the limits of integration,
\( a \) and \( b \), are themselves functions of time. Leibniz's theorem states the time derivative of the integral of \( F(x,t) \) between \( x = a(t) \) and \( x = b(t) \) is
\[
\frac{d}{dt} \int_{x = a(t)}^{x = b(t)} F(x,t)\, dx = \int_{a}^{b} \frac{\partial F}{\partial t} \, dx + \frac{db}{dt} F(b,t) - \frac{da}{dt} F(a,t)
\]
where \( a \), \( b \), \( F \), and their derivatives appearing on the right side are all evaluated at time \( t \)
</p>
</div>
<div class="image-container" style="text-align: left;">
<img src="Figures/Lecture1A_GraphicalLiebnizTheorem.png" alt="GraphicalLiebnizTheorem" style="max-width: 49%; height: auto; display: block; margin: auto;">
<p>Graphical illustration of the Leibniz theorem. The three marked areas correspond to the three contributions shown on the right in \(
\frac{d}{dt} \int_{x = a(t)}^{x = b(t)} F(x,t)\, dx = \boxed{\int_{a}^{b} \frac{\partial F}{\partial t} \, dx + \frac{db}{dt} F(b,t) - \frac{da}{dt} F(a,t)}
\) The continuous line shows the integral \( \int F dx \) at time \( t \), and the dashed line shows the integral at time \( t + dt \) <br>
The first term on the right side is the integral of \( \partial F/\partial t \) between \( x = a \) and \( b \), the second term is the gain of \( F \) at the upper limit which is moving at rate \( db/dt \),
and the third term is the loss of \( F \) at the lower limit which is moving at rate \( da/dt \)
</p>
</div>
<p>The essential features are the total time derivative on the left, an integral over the partial time derivative of the integrand on the right, and terms that account for the time-dependence of the limits of integration on the right</p>
<p>These features persist when \(\frac{d}{dt} \int_{x = a(t)}^{x = b(t)} F(x,t)\, dx = \int_{a}^{b} \frac{\partial F}{\partial t} \, dx + \frac{db}{dt} F(b,t) - \frac{da}{dt} F(a,t)\) is generalized to three dimensions</p>
</div>
<!-- Left Arrow to go back to Slide -->
<a href="Lecture1ASlide37.html" class="nav-button left">◀</a>
<!-- Right Arrow to go to Slide -->
<a href="Lecture1ASlide39.html" class="nav-button right">▶</a>
</div>
<!-- Footer -->
<div class="footer">
<div style="display:inline-block; width:0; height:0; overflow:hidden; visibility:hidden;">
<script type='text/javascript'
id='clustrmaps'
src='//cdn.clustrmaps.com/map_v2.js?cl=ddf1f3&w=120&t=n&d=OPKQOGhHo-7gCMldcljdv8lVxlAlOY6UExXXPy46lfI&co=ffffff&cmo=4b8ddf&cmn=7dcdf4&ct=808080'>
</script>
</div>
</div>
</body>
</html>