-
Notifications
You must be signed in to change notification settings - Fork 32
/
lebesgue.py
597 lines (479 loc) · 16.2 KB
/
lebesgue.py
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
from manimlib.imports import *
class IntroQuote(Scene):
def construct(self):
quote = TextMobject("""
I have to pay a certain sum, which I have collected in my pocket.
I take the bills and coins out of my pocket and give them to the
creditor in the order I find them until I have reached the total
sum. This is the Riemann integral. But I can proceed differently.
After I have taken all the money out of my pocket I order the bills
and coins according to identical values and then I pay the
several heaps one after the other to the creditor. This is my integral.""")
quote.scale(0.75)
author = TextMobject("- Henri Lebesgue", color=YELLOW)
author.shift(2 * DOWN + 3 * RIGHT)
self.play(Write(quote))
self.play(Write(author))
self.wait(5)
class FTC(GraphScene):
CONFIG = {
"x_max": 4,
"x_labeled_nums": list(range(-1, 5)),
"y_min": 0,
"y_max": 2,
"y_tick_frequency": 2.5,
"y_labeled_nums": list(range(5, 20, 5)),
"n_rect_iterations": 1,
"default_right_x": 3,
"func": lambda x: 0.1*math.pow(x-2, 2) + 1,
"y_axis_label": "",
}
def construct(self):
self.setup_axes()
graph = self.get_graph(self.func)
self.play(ShowCreation(graph))
self.graph = graph
rects = VGroup()
for dx in np.arange(0.2, 0.05, -0.05):
rect = self.get_riemann_rectangles(
self.graph,
x_min=0,
x_max=self.default_right_x,
dx=dx,
stroke_width=4*dx,
)
rects.add(rect)
self.play(
DrawBorderThenFill(
rects[0],
run_time=2,
rate_func=smooth,
lag_ratio=0.5,
),
)
self.wait()
for rect in rects[1:]:
self.play(
Transform(
rects[0], rect,
run_time=2,
rate_func=smooth,
lag_ratio=0.5,
),
)
self.wait()
t = TextMobject("Riemann Integration")
t.scale(1.5)
t.shift(3 * UP)
self.play(FadeInFromDown(t))
self.wait()
class Problems(Scene):
def construct(self):
title = TextMobject(
"Problems with Riemann Integration", color=PURPLE)
title.scale(1.25)
title.shift(3 * UP)
l = BulletedList("Higher Dimensions", "Continuity",
dot_color=BLUE, buff=0.75*LARGE_BUFF)
l.scale(1.5)
l.shift(0.25*DOWN)
self.play(FadeInFromDown(title))
self.play(Write(l))
self.wait()
self.play(l.fade_all_but, 0)
self.wait()
self.play(l.fade_all_but, 1)
self.wait()
class HigherDim(ThreeDScene):
def construct(self):
axis_config = {
"x_min": -5,
"x_max": 5,
"y_min": -5,
"y_max": 5,
"z_min": -3.5,
"z_max": 3.5,
}
axes = ThreeDAxes(**axis_config)
cubes = VGroup()
for x in np.arange(-5, 5.1, 0.5):
for y in np.arange(-5, 5.1, 0.5):
z = np.sin(x) + np.cos(y)
p = Prism(dimensions=[0.5, 0.5, z])
p.shift([x, y, z/2])
cubes.add(p)
self.move_camera(0.8 * np.pi / 2, -0.45 * np.pi)
self.play(Write(axes))
self.play(Write(cubes))
self.begin_ambient_camera_rotation(rate=0.08)
self.wait(30)
class PieceWise(Scene):
def construct(self):
axes = Axes(
x_min=-1,
x_max=5,
y_min=-1,
y_max=5,
axis_config={
"include_tip": False
}
)
f = VGroup(
FunctionGraph(lambda x: 2, x_min=0, x_max=2.5),
FunctionGraph(lambda x: 4, x_min=2.5, x_max=5)
)
r1 = self.get_riemann_sums(lambda x: 2)
grp = VGroup(axes, f, r1)
grp.center()
self.play(Write(axes), Write(f))
self.wait()
colors = color_gradient([BLUE, GREEN], 3)
for i in range(2):
r1[i].set_fill(color=colors[i])
self.play(Write(r1))
self.wait()
r = Rectangle(height=1.9, width=1, stroke_opacity=1,
fill_opacity=1, stroke_color=BLACK, fill_color=colors[-1])
r.next_to(r1[-1], RIGHT).shift(0.25 * LEFT)
h = ValueTracker(1.9)
def update(rect):
r = Rectangle(height=h.get_value(), width=1, stroke_opacity=1,
fill_opacity=1, stroke_color=BLACK, fill_color=colors[-1])
r.next_to(r1[-1], RIGHT).shift(0.25 * LEFT +
(h.get_value() - 1.9)/2 * UP)
rect.become(r)
r.add_updater(update)
self.play(Write(r))
self.play(h.increment_value, 2, rate_func=there_and_back, run_time=3)
self.wait()
def get_riemann_sums(self, func, dx=1, x=(0.5, 2.5), color=RED):
rects = VGroup()
for i in np.arange(x[0], x[1], dx):
h = func(i)
rect = Rectangle(height=h-0.1, width=dx, stroke_color=BLACK, fill_color=BLACK,
stroke_opacity=1, fill_opacity=1)
rect.shift(i * RIGHT + (h / 2) * UP)
rects.add(rect)
return rects
class IRFunc(Scene):
def construct(self):
eq = TexMobject(
r"f(x) = \begin{cases} 0 & x \text{ is rational} \\ 1 & x \text{ is irrational} \end{cases}")
eq.scale(1.5)
self.play(Write(eq))
self.wait()
self.play(eq.scale, 0.5)
self.play(eq.shift, 3 * UP)
self.wait()
class IRGraph(GraphScene):
CONFIG = {
"x_min": 0,
"x_max": 1,
"x_labeled_nums": list(range(0, 2)),
"y_min": 0,
"y_max": 2,
"y_tick_frequency": 1,
"y_labeled_nums": list(range(0, 2)),
"func": lambda x: 1,
"y_axis_label": "",
}
def construct(self):
self.setup_axes(animate=True)
graph = self.get_graph(self.func)
self.wait()
dx = 0.005
rects = self.get_riemann_rectangles(
graph,
x_min=0,
x_max=1,
dx=dx,
stroke_width=2,
)
self.play(
DrawBorderThenFill(
rects,
run_time=2,
rate_func=smooth,
lag_ratio=0.5,
),
)
self.wait()
class IRExp(Scene):
def construct(self):
num = TexMobject("0.", "123", "123123...")
num.scale(3)
self.play(FadeInFromDown(num[0]))
self.wait()
self.play(FadeInFromDown(num[1]))
self.wait()
b = Brace(num[2], color=YELLOW)
t = b.get_tex("P = (0.1)^n")
br = VGroup(b, t)
self.play(Write(num[2]))
self.play(Write(br))
self.wait()
axes = Axes(
x_min=-1,
x_max=1,
y_min=0,
y_max=1,
axis_config={
"include_tip": False
}
)
f = FunctionGraph(lambda x: 0.1 * math.pow(0.1, x),
x_min=-1, x_max=1, color=TEAL)
func = VGroup(axes, f)
func.shift(2 * UP + 3 * LEFT)
func.scale(2)
eq = TexMobject(r"\lim_{n \rightarrow \infty} 0.1^n = 0")
eq.scale(1.5)
eq.shift(2 * UP + 3 * RIGHT)
self.play(Write(func))
self.play(Write(eq))
self.wait()
class Integ2(Scene):
def construct(self):
eq = TexMobject(r"\int_0^1 f(x) dx = 1")
eq.scale(2)
self.play(Write(eq))
self.wait()
class LebesguePart(Scene):
def construct(self):
title = TextMobject("Lebesgue Integration", color=GOLD)
title.scale(2)
self.play(Write(title), run_time=3)
self.wait()
class HenriLebesgue(Scene):
def construct(self):
img = ImageMobject("./img/henri.jpg")
img.scale(2.5)
img.shift(1 * UP)
eq = TextMobject(r"Henri Lebesgue").scale(1.5).shift(2.5 * DOWN)
self.play(FadeInFromDown(img))
self.play(Write(eq))
self.wait()
class LebesgueIntegral(Scene):
CONFIG = {
"func": lambda x: -0.9 * (x - 2.5) ** 2 + 2.5,
}
def construct(self):
axes = Axes(
x_min=0,
x_max=5,
y_min=0,
y_max=3,
axis_config={
"include_tip": False
}
)
f = FunctionGraph(self.func, x_min=0.833, x_max=4.167,
color=WHITE, stroke_width=2)
rects = VGroup(
*[self.get_lebesgue_rectangles(dx=dx) for dx in np.arange(0.5, 0.1, -0.1)]
)
grp = VGroup(axes, f, rects)
grp.center()
grp.scale(2)
self.play(Write(axes), Write(f))
self.play(Write(rects[0]))
self.wait(1)
for rect in rects[1:]:
self.play(Transform(rects[0], rect))
self.wait(1)
def get_lebesgue_rectangles(self, dx=0.2, y=(0, 2.4)):
rects = VGroup()
y_range = np.arange(y[0], y[1], dx)
colors = color_gradient([BLUE, GREEN], len(y_range))
for color, y in zip(colors, y_range):
x = abs(2.5 - ((((y + dx) - 2.5)/(-0.9))**(1/2) + 2.5))
rect = Rectangle(height=dx, width=2*x, stroke_color=BLACK, fill_color=color,
stroke_opacity=1, fill_opacity=1, stroke_width=2*dx)
rect.shift([2.5, y+dx/2, 0])
rects.add(rect)
return rects
class IRLebesgue(Scene):
def construct(self):
eq1 = TexMobject("f(x), x \in [0, 1]")
eq1.scale(1.5)
eq1.shift(3.25 * UP)
arr1 = Arrow(2.75 * UP, 2 * UP + 4 * LEFT, color=YELLOW)
arr2 = Arrow(2.75 * UP, 2 * UP + 4 * RIGHT, color=YELLOW)
a0 = TexMobject("A_0", color=BLUE)
a0.scale(1.5)
a0.shift(1.25 * UP + 4 * LEFT)
a1 = TexMobject("A_1", color=BLUE)
a1.scale(1.5)
a1.shift(1.25 * UP + 4 * RIGHT)
eq2 = TextMobject(r"\(f(x) = 0 \) \\ \(x\) is rational",
tex_to_color_map={"rational": GREEN})
eq2.shift(0 * UP + 4 * LEFT)
eq3 = TextMobject(r"\( f(x) = 1 \) \\ \(x\) is irrational",
tex_to_color_map={"irrational": GREEN})
eq3.shift(0 * UP + 4 * RIGHT)
integ = TexMobject(r"\int_0^1 f(x) \mathrm{d}\mu = 0 \cdot \mu (A_0) + 1 \cdot \mu (A_1)",
tex_to_color_map={r"A_0": BLUE, r"A_1": BLUE, r"\mu": GOLD})
integ.shift(2 * DOWN)
integ.scale(1.5)
self.play(Write(eq1))
self.play(Write(arr1), Write(arr2))
self.play(Write(a0), Write(eq2))
self.play(Write(a1), Write(eq3))
self.wait()
self.play(Write(integ))
self.wait()
self.play(Uncreate(VGroup(eq1, arr1, arr2, a0, eq2, a1, eq3)))
self.play(integ.shift, 3 * UP)
self.wait()
soln = TexMobject(r"= 0 \cdot 0 + 1 \cdot 1 = ", r"1")
soln.scale(1.5)
soln.shift(1 * DOWN + 1 * RIGHT)
brect = BackgroundRectangle(
soln[-1],
color=YELLOW,
fill_opacity=0,
stroke_width=4,
stroke_opacity=1,
buff=0.25
)
self.play(Write(soln))
self.play(Write(brect))
self.wait()
class LebesgueEq(Scene):
def construct(self):
title = TextMobject("Lebesgue Integral", color=PURPLE)
title.scale(1.5)
title.shift(3 * UP)
self.play(FadeInFromDown(title))
self.wait()
eq1 = TexMobject(r"\int_{a}^{b} f(x) \mathrm{d} \mu =\sum_{i=1}^{n} y_{i} \cdot \mu \left(A_{y_{i}}\right)",
tex_to_color_map={r"A_{y_{i}}": BLUE, r"\mu": GOLD})
eq1.scale(1.5)
eq1.shift(1 * UP)
self.play(Write(eq1))
self.wait()
eq2 = TexMobject(r"\int_{a}^{b} f(x) d \mu =\lim _{n \rightarrow \infty} \int_{a}^{b} f_{n}(x) d \mu",
tex_to_color_map={r"f_{n}": BLUE, r"\mu": GOLD})
eq2.scale(1.5)
eq2.shift(2 * DOWN)
self.play(Write(eq2))
self.wait()
class Electric(Scene):
def construct(self):
f = FunctionGraph(self.func, color=RED, x_min=-6)
axes = Axes(
x_min=0,
x_max=15,
y_min=-2,
y_max=2,
axis_config={
"include_tip": False
}
)
lbl = TextMobject(r"Electric Current \( E(t) \)")
lbl.shift([-4, 3, 0])
axes.shift(6 * LEFT)
self.play(Write(axes), Write(lbl))
self.play(Write(f), rate_func=smooth, run_time=4)
self.wait()
def func(self, x):
if -4 <= x <= -2.5 or 0 <= x <= 1.5 or x >= 4:
return 1
return 0
class ExpectedProb(Scene):
def construct(self):
f = ParametricFunction(
function=self.func,
t_min=-3,
t_max=3,
color=WHITE
)
axes = Axes(
x_min=-3,
x_max=3,
y_min=0,
y_max=2,
number_line_config={
"color": LIGHT_GREY,
"include_tip": False,
"exclude_zero_from_default_numbers": True,
}
)
rect = self.get_riemann_sums(self.func)
rect.scale(1.95)
rect.shift(2.4 * DOWN)
func = VGroup(axes, f)
func.scale(2)
func.shift(2 * DOWN)
eq2 = TexMobject(r"E[x] = \int_{-\infty}^{\infty} P(x) \mathrm{d} x")
eq2.scale(1.5)
eq2.shift(2.5 * UP)
self.play(Write(func))
self.wait()
self.play(Write(eq2))
self.play(Write(rect))
self.wait()
@staticmethod
def get_riemann_sums(func, dx=0.01, x=(-3, 3), color=RED):
rects = VGroup()
x_range = np.arange(x[0], x[1], dx)
for i in x_range:
h = func(i)[1]
rect = Rectangle(height=h, width=dx, color=BLACK, stroke_width=0,
stroke_opacity=0, fill_opacity=1)
rect.shift(i * RIGHT + (h / 2) * UP)
rects.add(rect)
colors = color_gradient([BLUE, PURPLE], len(x_range))
for i in range(len(x_range)):
rects[i].set_fill(color=colors[i])
return rects
def func(self, t):
return np.array([t, np.exp(-t**2), 0])
class Expected(Scene):
def construct(self):
eq = TexMobject(r"E[x] = \int X \mathrm{d} P",
tex_to_color_map={r"E": GOLD, "x": BLUE, "P": YELLOW})
eq.scale(2)
self.play(Write(eq))
self.wait()
class T2(Scene):
def construct(self):
eq = TexMobject(r"\int f(x) d \mu",
tex_to_color_map={r"\mu": GOLD, "x": BLUE, "f": RED})
eq.scale(4)
self.play(Write(eq))
self.wait()
class Thumbnail(Scene):
CONFIG = {
"func": lambda x: -0.9 * (x - 2.5) ** 2 + 2.5,
}
def construct(self):
axes = Axes(
x_min=-10,
x_max=12,
y_min=-123,
y_max=122,
axis_config={
"include_tip": False
}
)
f = FunctionGraph(self.func, x_min=0.833, x_max=4.167,
color=WHITE, stroke_width=2)
rects = self.get_lebesgue_rectangles(dx=0.3)
grp = VGroup(axes, f, rects)
grp.scale(1.75)
grp.shift(3.5 * LEFT + 3.5 * DOWN)
self.play(Write(axes), Write(f))
self.play(Write(rects))
self.wait(1)
def get_lebesgue_rectangles(self, dx=0.2, y=(0, 2.4)):
rects = VGroup()
y_range = np.arange(y[0], y[1], dx)
colors = color_gradient([BLUE, GREEN], len(y_range))
for color, y in zip(colors, y_range):
x = abs(2.5 - ((((y + dx) - 2.5)/(-0.9))**(1/2) + 2.5))
rect = Rectangle(height=dx, width=2*x, stroke_color=BLACK, fill_color=color,
stroke_opacity=1, fill_opacity=1, stroke_width=2*dx)
rect.shift([2.5, y+dx/2, 0])
rects.add(rect)
return rects