3b1b-manim/moser/main.py

1263 lines
44 KiB
Python
Raw Normal View History

2015-04-14 17:55:25 -07:00
#!/usr/bin/env python
import numpy as np
import itertools as it
import operator as op
from copy import deepcopy
from random import random, randint
import sys
2015-05-07 21:28:02 -07:00
import inspect
2015-04-14 17:55:25 -07:00
from animation import *
from mobject import *
from image_mobject import *
from constants import *
from region import *
from scene import Scene
2015-05-07 21:28:02 -07:00
from script_wrapper import command_line_create_scene
2015-04-14 17:55:25 -07:00
from moser_helpers import *
from graphs import *
2015-04-14 17:55:25 -07:00
2015-05-17 15:08:51 -07:00
class CountSections(CircleScene):
def __init__(self, *args, **kwargs):
CircleScene.__init__(self, *args, **kwargs)
self.remove(*self.lines)
self.animate(*[
Transform(Dot(points[i]),Line(points[i], points[1-i]))
for points in it.combinations(self.points, 2)
for i in (0, 1)
], run_time = 2.0)
regions = plane_partition_from_points(*self.points)
interior = Region(lambda x, y : x**2 + y**2 < self.radius**2)
map(lambda r : r.intersect(interior), regions)
regions = filter(lambda r : r.bool_grid.any(), regions)
self.count_regions(regions, num_offset = ORIGIN)
class MoserPattern(CircleScene):
args_list = [(MORE_RADIANS,)]
def __init__(self, radians, *args, **kwargs):
CircleScene.__init__(self, radians, *args, **kwargs)
self.remove(*self.dots + self.lines + [self.n_equals])
n_equals, num = tex_mobjects(["n=", "10"])
for mob in n_equals, num:
mob.shift((-SPACE_WIDTH + 1.5, SPACE_HEIGHT - 1.5, 0))
self.add(n_equals)
for n in range(1, len(radians)+1):
self.add(*self.dots[:n])
self.add(*[Line(p[0], p[1]) for p in it.combinations(self.points[:n], 2)])
tex_stuffs = [
tex_mobject(str(moser_function(n))),
tex_mobject(str(n)).shift(num.get_center())
]
self.add(*tex_stuffs)
self.dither(0.5)
self.remove(*tex_stuffs)
def hpsq_taylored_alpha(t):
return 0.3*np.sin(5*t-5)*np.exp(-20*(t-0.6)**2) + high_inflection_0_to_1(t)
class HardProblemsSimplerQuestions(Scene):
def __init__(self, *args, **kwargs):
Scene.__init__(self, *args, **kwargs)
right_center = np.array((4, 1, 0))
left_center = np.array((-5, 1, 0))
scale_factor = 0.7
fermat = dict([
(
sym,
CompoundMobject(*tex_mobjects(
["x","^"+sym,"+","y","^"+sym,"=","z","^"+sym]
))
)
for sym in ["n", "2", "3"]
])
# not_that_hard = text_mobject("(maybe not that hard...)").scale(0.5)
fermat2, fermat2_jargon = tex_mobjects([
r"&x^2 + y^2 = z^2 \\",
r"""
&(3, 4, 5) \\
&(5, 12, 13) \\
&(15, 8, 17) \\
&\quad \vdots \\
(m^2 - &n^2, 2mn, m^2 + n^2) \\
&\quad \vdots
"""
])
fermat3, fermat3_jargon = tex_mobjects([
r"&x^3 + y^3 = z^3\\",
r"""
&y^3 = (z - x)(z - \omega x)(z - \omega^2 x) \\
&\mathds{Z}[\omega] \text{ is a UFD...}
"""
])
for mob in [fermat2, fermat3, fermat["2"], fermat["3"],
fermat2_jargon, fermat3_jargon]:
mob.scale(scale_factor)
fermat["2"].shift(right_center)
fermat["3"].shift(left_center)
fermat["n"].shift((0, SPACE_HEIGHT - 1, 0))
shift_val = right_center - fermat2.get_center()
fermat2.shift(shift_val)
fermat2_jargon.shift(shift_val)
shift_val = left_center - fermat3.get_center()
fermat3.shift(shift_val)
fermat3_jargon.shift(shift_val)
copies = [
deepcopy(fermat["n"]).center().scale(scale_factor).shift(c)
for c in [left_center, right_center]
]
self.add(fermat["n"])
self.animate(*[
Transform(deepcopy(fermat["n"]), f_copy)
for f_copy in copies
])
self.remove(*self.mobjects)
self.add(fermat["n"])
self.animate(*[
SemiCircleTransform(mobs[0], mobs[1])
for f_copy, sym in zip(copies, ["3", "2"])
for mobs in zip(f_copy.split(), fermat[sym].split())
])
self.remove(*self.mobjects)
self.add(fermat["n"], fermat2, fermat3)
self.dither()
circle_grid = CompoundMobject(
Circle(),
Grid(radius = 2),
tex_mobject(r"\mathds{R}^2").shift((2, -2, 0))
)
start_line = Line((-1, 0, 0), (-1, 2, 0))
end_line = Line((-1, 0, 0), (-1, -2, 0))
for mob in circle_grid, start_line, end_line:
mob.scale(0.5).shift(right_center + (0, 2, 0))
other_grid = CompoundMobject(
Grid(radius = 2),
tex_mobject(r"\mathds{C}").shift((2, -2, 0))
)
omega = np.array((0.5, 0.5*np.sqrt(3), 0))
dots = CompoundMobject(*[
Dot(t*np.array((1, 0, 0)) + s * omega)
for t, s in it.product(range(-2, 3), range(-2, 3))
])
for mob in dots, other_grid:
mob.scale(0.5).shift(left_center + (0, 2, 0))
self.add(circle_grid, other_grid)
self.animate(
FadeIn(fermat2_jargon),
FadeIn(fermat3_jargon),
SemiCircleTransform(start_line, end_line),
ShowCreation(dots)
)
self.dither()
all_mobjects = CompoundMobject(*self.mobjects)
self.remove(*self.mobjects)
self.animate(
Transform(
all_mobjects,
Point((SPACE_WIDTH, 0, 0))
),
Transform(
Point((-SPACE_WIDTH, 0, 0)),
CompoundMobject(*CircleScene(RADIANS).mobjects)
)
)
2015-05-07 21:28:02 -07:00
class CountLines(CircleScene):
def __init__(self, radians, *args, **kwargs):
CircleScene.__init__(self, radians, *args, **kwargs)
#TODO, Count things explicitly?
text_center = (self.radius + 1, self.radius -1, 0)
scale_factor = 0.4
text = tex_mobject(r"\text{How Many Lines?}", size = r"\large")
n = len(radians)
formula, answer = tex_mobject([
r"{%d \choose 2} = \frac{%d(%d - 1)}{2} = "%(n, n, n),
str(choose(n, 2))
])
text.scale(scale_factor).shift(text_center)
x = text_center[0]
new_lines = [
Line((x-1, y, 0), (x+1, y, 0))
for y in np.arange(
-(self.radius - 1),
self.radius - 1,
(2*self.radius - 2)/len(self.lines)
)
2015-04-14 17:55:25 -07:00
]
2015-05-07 21:28:02 -07:00
self.add(text)
self.dither()
self.animate(*[
Transform(line1, line2, run_time = 2)
for line1, line2 in zip(self.lines, new_lines)
])
self.dither()
self.remove(text)
self.count(new_lines)
anims = [FadeIn(formula)]
for mob in self.mobjects:
2015-05-17 15:08:51 -07:00
if mob == self.number:
2015-05-07 21:28:02 -07:00
anims.append(Transform(mob, answer))
else:
anims.append(FadeOut(mob))
self.animate(*anims, run_time = 1)
class CountIntersectionPoints(CircleScene):
def __init__(self, radians, *args, **kwargs):
radians = [r % (2*np.pi) for r in radians]
radians.sort()
CircleScene.__init__(self, radians, *args, **kwargs)
intersection_points = [
intersection((p[0], p[2]), (p[1], p[3]))
for p in it.combinations(self.points, 4)
]
2015-05-07 21:28:02 -07:00
intersection_dots = [Dot(point) for point in intersection_points]
text_center = (self.radius + 0.5, self.radius -0.5, 0)
size = r"\large"
scale_factor = 0.4
text = tex_mobject(r"\text{How Many Intersection Points?}", size = size)
n = len(radians)
formula, answer = tex_mobjects([
r"{%d \choose 4} = \frac{%d(%d - 1)(%d - 2)(%d-3)}{1\cdot 2\cdot 3 \cdot 4}="%(n, n, n, n, n),
str(choose(n, 4))
])
text.scale(scale_factor).shift(text_center)
self.add(text)
2015-05-17 15:08:51 -07:00
self.count(intersection_dots, mode="show", num_offset = ORIGIN)
2015-05-07 21:28:02 -07:00
self.dither()
anims = []
for mob in self.mobjects:
2015-05-17 15:08:51 -07:00
if mob == self.number: #put in during count
2015-05-07 21:28:02 -07:00
anims.append(Transform(mob, answer))
else:
anims.append(FadeOut(mob))
anims.append(Animation(formula))
self.animate(*anims, run_time = 1)
class NonGeneralPosition(CircleScene):
args_list = []
@staticmethod
def args_to_string(*args):
return ""
def __init__(self, *args, **kwargs):
radians = np.arange(1, 7)
new_radians = (np.pi/3)*radians
CircleScene.__init__(self, radians, *args, **kwargs)
new_cs = CircleScene(new_radians)
center_region = reduce(
Region.intersect,
[
HalfPlane((self.points[x], self.points[(x+3)%6]))
for x in [0, 4, 2]#Ya know, trust it
]
)
center_region
text = tex_mobject(r"\text{This region disappears}", size = r"\large")
text.center().scale(0.5).shift((-self.radius, self.radius-0.3, 0))
arrow = Arrow(
point = (-0.35, -0.1, 0),
direction = (1, -1, 0),
length = self.radius + 1,
color = "white",
)
self.highlight_region(center_region, "green")
self.add(text, arrow)
self.dither(2)
self.remove(text, arrow)
self.reset_background()
self.animate(*[
Transform(mob1, mob2, run_time = DEFAULT_ANIMATION_RUN_TIME)
for mob1, mob2 in zip(self.mobjects, new_self.mobjects)
])
class LineCorrespondsWithPair(CircleScene):
args_list = [
(RADIANS, 2, 5),
2015-05-17 15:08:51 -07:00
(RADIANS, 0, 4)
]
2015-05-07 21:28:02 -07:00
@staticmethod
def args_to_string(*args):
return int_list_to_string(args[1:])
def __init__(self, radians, dot0_index, dot1_index,
*args, **kwargs):
CircleScene.__init__(self, radians, *args, **kwargs)
#Remove from self.lines list, so they won't be faded out
radians = list(radians)
r1, r2 = radians[dot0_index], radians[dot1_index]
line_index = list(it.combinations(radians, 2)).index((r1, r2))
line, dot0, dot1 = self.lines[line_index], self.dots[dot0_index], self.dots[dot1_index]
self.lines.remove(line)
self.dots.remove(dot0)
self.dots.remove(dot1)
self.dither()
self.animate(*[
2015-05-17 15:08:51 -07:00
ApplyMethod((Mobject.fade, 0.2), mob)
2015-05-07 21:28:02 -07:00
for mob in self.lines + self.dots
])
self.animate(*[
2015-05-17 15:08:51 -07:00
Transform(
dot, Dot(dot.get_center(), 3*dot.radius),
alpha_func = there_and_back
)
for dot in (dot0, dot1)
2015-05-07 21:28:02 -07:00
])
self.animate(Transform(line, dot0))
2015-05-07 21:28:02 -07:00
class IllustrateNChooseK(Scene):
args_list = [
2015-05-17 15:08:51 -07:00
(n, k)
for n in range(1, 10)
for k in range(n+1)
]
2015-05-07 21:28:02 -07:00
@staticmethod
def args_to_string(*args):
return int_list_to_string(args)
def __init__(self, n, k, *args, **kwargs):
Scene.__init__(self, *args, **kwargs)
nrange = range(1, n+1)
tuples = list(it.combinations(nrange, k))
nrange_mobs = tex_mobjects([str(n) + r'\;' for n in nrange])
tuple_mobs = tex_mobjects(
[
(r'\\&' if c%(20//k) == 0 else r'\;\;') + str(p)
for p, c in zip(tuples, it.count())
],
size = r"\small"
)
2015-05-07 21:28:02 -07:00
tuple_terms = {
2 : "pairs",
3 : "triplets",
4 : "quadruplets",
}
tuple_term = tuple_terms[k] if k in tuple_terms else "tuples"
2015-05-17 15:08:51 -07:00
if k == 2:
str1 = r"{%d \choose %d} = \frac{%d(%d - 1)}{2}="%(n, k, n, n)
elif k == 4:
str1 = r"""
{%d \choose %d} =
\frac{%d(%d - 1)(%d-2)(%d-3)}{1\cdot 2\cdot 3 \cdot 4}=
"""%(n, k, n, n, n, n)
else:
str1 = r"{%d \choose %d} ="%(n, k)
2015-05-07 21:28:02 -07:00
form1, count, form2 = tex_mobject([
2015-05-17 15:08:51 -07:00
str1,
2015-05-07 21:28:02 -07:00
"%d"%choose(n, k),
r" \text{ total %s}"%tuple_term
])
2015-05-17 15:08:51 -07:00
# pronunciation = text_mobject(
# "(pronounced ``%d choose %d\'\')"%(n, k)
# )
2015-05-07 21:28:02 -07:00
for mob in nrange_mobs:
mob.shift((0, 2, 0))
for mob in form1, count, form2:
2015-05-17 15:08:51 -07:00
mob.scale(0.75).shift((0, -SPACE_HEIGHT + 1, 0))
2015-05-07 21:28:02 -07:00
count_center = count.get_center()
for mob in tuple_mobs:
mob.scale(0.6)
2015-05-17 15:08:51 -07:00
# pronunciation.shift(form1.get_center() + (-1, 1, 0))
2015-05-07 21:28:02 -07:00
self.add(*nrange_mobs)
self.dither()
run_time = 6.0
frame_time = run_time / len(tuples)
for tup, count in zip(tuples, it.count()):
count_mob = tex_mobject(str(count+1))
count_mob.center().shift(count_center)
self.add(count_mob)
tuple_copy = CompoundMobject(*[nrange_mobs[index-1] for index in tup])
tuple_copy.highlight()
self.add(tuple_copy)
self.add(tuple_mobs[count])
self.dither(frame_time)
self.remove(count_mob)
self.remove(tuple_copy)
self.add(count_mob)
self.animate(FadeIn(CompoundMobject(form1, form2)))
class IntersectionPointCorrespondances(CircleScene):
args_list = [
(RADIANS, range(0, 7, 2)),
2015-04-30 15:26:56 -07:00
]
2015-05-07 21:28:02 -07:00
@staticmethod
def args_to_string(*args):
return int_list_to_string(args[1])
def __init__(self, radians, indices, *args, **kwargs):
assert(len(indices) == 4)
indices.sort()
CircleScene.__init__(self, radians, *args, **kwargs)
intersection_point = intersection(
(self.points[indices[0]], self.points[indices[2]]),
(self.points[indices[1]], self.points[indices[3]])
)
if len(intersection_point) == 2:
intersection_point = list(intersection_point) + [0]
intersection_dot = Dot(intersection_point)
intersection_dot_arrow = Arrow(intersection_point).nudge()
self.add(intersection_dot)
pairs = list(it.combinations(range(len(radians)), 2))
lines_to_save = [
self.lines[pairs.index((indices[p0], indices[p1]))]
for p0, p1 in [(0, 2), (1, 3)]
]
dots_to_save = [
self.dots[p]
for p in indices
]
line_statement = tex_mobject(r"\text{Pair of Lines}")
dots_statement = tex_mobject(r"&\text{Quadruplet of} \\ &\text{outer dots}")
for mob in line_statement, dots_statement:
mob.center()
mob.scale(0.7)
mob.shift((SPACE_WIDTH-2, SPACE_HEIGHT - 1, 0))
fade_outs = []
line_highlights = []
dot_highlights = []
dot_pointers = []
for mob in self.mobjects:
if mob in lines_to_save:
line_highlights.append(Highlight(mob))
elif mob in dots_to_save:
dot_highlights.append(Highlight(mob))
dot_pointers.append(Arrow(mob.get_center()).nudge())
elif mob != intersection_dot:
fade_outs.append(FadeOut(mob, alpha_func = not_quite_there))
self.add(intersection_dot_arrow)
self.animate(Highlight(intersection_dot))
self.remove(intersection_dot_arrow)
self.animate(*fade_outs)
self.dither()
self.add(line_statement)
self.animate(*line_highlights)
self.remove(line_statement)
self.dither()
self.add(dots_statement, *dot_pointers)
self.animate(*dot_highlights)
self.remove(dots_statement, *dot_pointers)
class LinesIntersectOutside(CircleScene):
args_list = [
(RADIANS, [2, 4, 5, 6]),
]
2015-05-07 21:28:02 -07:00
@staticmethod
def args_to_string(*args):
return int_list_to_string(args[1])
def __init__(self, radians, indices, *args, **kwargs):
assert(len(indices) == 4)
indices.sort()
CircleScene.__init__(self, radians, *args, **kwargs)
intersection_point = intersection(
(self.points[indices[0]], self.points[indices[1]]),
(self.points[indices[2]], self.points[indices[3]])
)
intersection_point = tuple(list(intersection_point) + [0])
intersection_dot = Dot(intersection_point)
pairs = list(it.combinations(range(len(radians)), 2))
lines_to_save = [
self.lines[pairs.index((indices[p0], indices[p1]))]
for p0, p1 in [(0, 1), (2, 3)]
]
self.animate(*[
FadeOut(mob, alpha_func = not_quite_there)
for mob in self.mobjects if mob not in lines_to_save
])
self.animate(*[
Transform(
Line(self.points[indices[p0]], self.points[indices[p1]]),
Line(self.points[indices[p0]], intersection_point))
for p0, p1 in [(0, 1), (3, 2)]
] + [ShowCreation(intersection_dot)])
class QuadrupletsToIntersections(CircleScene):
def __init__(self, radians, *args, **kwargs):
CircleScene.__init__(self, radians, *args, **kwargs)
quadruplets = it.combinations(range(len(radians)), 4)
frame_time = 1.0
for quad in quadruplets:
intersection_dot = Dot(intersection(
(self.points[quad[0]], self.points[quad[2]]),
(self.points[quad[1]], self.points[quad[3]])
)).repeat(3)
dot_quad = [deepcopy(self.dots[i]) for i in quad]
for dot in dot_quad:
dot.scale_in_place(2)
dot_quad = CompoundMobject(*dot_quad)
dot_quad.highlight()
self.add(dot_quad)
self.dither(frame_time / 3)
self.animate(Transform(
dot_quad,
intersection_dot,
run_time = 3*frame_time/2
))
2015-05-17 15:08:51 -07:00
class GraphsAndEulersFormulaJoke(Scene):
def __init__(self, *args, **kwargs):
Scene.__init__(self, *args, **kwargs)
axes = CompoundMobject(
NumberLine(),
NumberLine().rotate(np.pi / 2)
)
graph = ParametricFunction(
lambda t : (10*t, ((10*t)**3 - 10*t), 0),
expected_measure = 40.0
)
graph.filter_out(lambda (x, y, z) : abs(y) > SPACE_HEIGHT)
self.add(axes)
self.animate(ShowCreation(graph), run_time = 1.0)
eulers = tex_mobject("e^{\pi i} = -1").shift((0, 3, 0))
self.animate(SemiCircleTransform(
deepcopy(graph), eulers
))
self.dither()
self.remove(*self.mobjects)
self.add(eulers)
self.animate(SemiCircleTransform(
CompoundMobject(axes, graph),
Point((-SPACE_WIDTH, SPACE_HEIGHT, 0))
))
self.animate(SemiCircleTransform(
eulers,
Point((SPACE_WIDTH, SPACE_HEIGHT, 0))
))
2015-05-07 21:28:02 -07:00
class DefiningGraph(GraphScene):
def __init__(self, *args, **kwargs):
GraphScene.__init__(self, *args, **kwargs)
2015-05-17 15:08:51 -07:00
word_center = (0, 3, 0)
vertices_word = text_mobject("``Vertices\"").shift(word_center)
edges_word = text_mobject("``Edges\"").shift(word_center)
2015-05-07 21:28:02 -07:00
dots, lines = self.vertices, self.edges
self.remove(*dots + lines)
all_dots = CompoundMobject(*dots)
self.animate(ShowCreation(all_dots))
self.remove(all_dots)
self.add(*dots)
2015-05-17 15:08:51 -07:00
self.animate(FadeIn(vertices_word))
2015-05-07 21:28:02 -07:00
self.dither()
2015-05-17 15:08:51 -07:00
self.remove(vertices_word)
2015-05-07 21:28:02 -07:00
self.animate(*[
ShowCreation(line) for line in lines
])
2015-05-17 15:08:51 -07:00
self.animate(FadeIn(edges_word))
2015-05-07 21:28:02 -07:00
#Move to new graph
2015-05-17 15:08:51 -07:00
# new_graph = deepcopy(self.graph)
# new_graph["vertices"] = [
# (v[0] + 3*random(), v[1] + 3*random(), 0)
# for v in new_graph["vertices"]
# ]
# new_graph_scene = GraphScene(new_graph)
# self.animate(*[
# Transform(m[0], m[1])
# for m in zip(self.mobjects, new_graph_scene.mobjects)
# ], run_time = 7.0)
class IntersectCubeGraphEdges(GraphScene):
args_list = []
@staticmethod
def args_to_string(*args):
return ""
def __init__(self, *args, **kwargs):
GraphScene.__init__(self, CUBE_GRAPH, *args, **kwargs)
self.remove(self.edges[0], self.edges[4])
2015-05-07 21:28:02 -07:00
self.animate(*[
2015-05-17 15:08:51 -07:00
Transform(
Line(self.points[i], self.points[j]),
CurvedLine(self.points[i], self.points[j]),
)
for i, j in [(0, 1), (5, 4)]
])
2015-05-07 21:28:02 -07:00
class DoubledEdges(GraphScene):
def __init__(self, *args, **kwargs):
GraphScene.__init__(self, *args, **kwargs)
lines_to_double = self.edges[:9:3]
crazy_lines = [
(
line,
Line(line.end, line.start),
CurvedLine(line.start, line.end) ,
2015-05-17 15:08:51 -07:00
CurvedLine(line.end, line.start)
)
2015-05-07 21:28:02 -07:00
for line in lines_to_double
]
2015-05-07 21:28:02 -07:00
anims = []
outward_curved_lines = []
kwargs = {"run_time" : 3.0}
for straight, backwards, inward, outward in crazy_lines:
anims += [
Transform(straight, inward, **kwargs),
Transform(backwards, outward, **kwargs),
]
outward_curved_lines.append(outward)
self.animate(*anims)
self.dither()
self.remove(*outward_curved_lines)
class EulersFormula(GraphScene):
def __init__(self, *args, **kwargs):
GraphScene.__init__(self, *args, **kwargs)
terms = "V - E + F =2".split(" ")
form = dict([
(key, mob)
for key, mob in zip(terms, tex_mobjects(terms))
])
for mob in form.values():
2015-05-17 15:08:51 -07:00
mob.shift((0, SPACE_HEIGHT-0.7, 0))
2015-05-07 21:28:02 -07:00
formula = CompoundMobject(*[form[k] for k in form.keys() if k != "=2"])
new_form = dict([
(key, deepcopy(mob).shift((0, -0.7, 0)))
for key, mob in zip(form.keys(), form.values())
])
2015-05-07 21:28:02 -07:00
self.add(formula)
colored_dots = [
deepcopy(d).scale_in_place(1.5).highlight("red")
for d in self.dots
]
colored_edges = [
deepcopy(e).highlight("red")
for e in self.edges
]
frame_time = 0.3
2015-05-07 21:28:02 -07:00
self.generate_regions()
parameters = [
2015-05-17 15:08:51 -07:00
(colored_dots, "V", "mobject", "-", "show"),
2015-05-07 21:28:02 -07:00
(colored_edges, "E", "mobject", "+", "show_creation"),
2015-05-17 15:08:51 -07:00
(self.regions, "F", "region", "=2", "show_all")
2015-05-07 21:28:02 -07:00
]
for items, letter, item_type, symbol, mode in parameters:
self.count(
2015-05-17 15:08:51 -07:00
items,
2015-05-07 21:28:02 -07:00
item_type = item_type,
mode = mode,
num_offset = new_form[letter].get_center(),
run_time = frame_time*len(items)
)
2015-05-17 15:08:51 -07:00
self.dither()
2015-05-07 21:28:02 -07:00
if item_type == "mobject":
self.remove(*items)
self.add(new_form[symbol])
class CannotDirectlyApplyEulerToMoser(CircleScene):
def __init__(self, radians, *args, **kwargs):
CircleScene.__init__(self, radians, *args, **kwargs)
self.remove(self.n_equals)
n_equals, intersection_count = tex_mobjects([
r"&n = %d\\"%len(radians),
r"&{%d \choose 4} = %d"%(len(radians), choose(len(radians), 4))
])
2015-05-07 21:28:02 -07:00
shift_val = self.n_equals.get_center() - n_equals.get_center()
for mob in n_equals, intersection_count:
mob.shift(shift_val)
self.add(n_equals)
2015-05-17 15:08:51 -07:00
yellow_dots = [
d.highlight("yellow").scale_in_place(2)
for d in deepcopy(self.dots)
]
yellow_lines = CompoundMobject(*[
l.highlight("yellow") for l in deepcopy(self.lines)
])
2015-05-07 21:28:02 -07:00
self.animate(*[
ShowCreation(dot) for dot in yellow_dots
], run_time = 1.0)
self.dither()
self.remove(*yellow_dots)
2015-05-17 15:08:51 -07:00
self.animate(ShowCreation(yellow_lines))
2015-05-07 21:28:02 -07:00
self.dither()
self.remove(yellow_lines)
cannot_intersect = text_mobject(r"""
Euler's formula does not apply to \\
graphs whose edges intersect!
"""
)
2015-05-07 21:28:02 -07:00
cannot_intersect.center()
for mob in self.mobjects:
mob.fade(0.3)
self.add(cannot_intersect)
self.dither()
self.remove(cannot_intersect)
for mob in self.mobjects:
mob.fade(1/0.3)
self.generate_intersection_dots()
self.animate(FadeIn(intersection_count), *[
ShowCreation(dot) for dot in self.intersection_dots
])
class ShowMoserGraphLines(CircleScene):
def __init__(self, radians, *args, **kwargs):
radians = list(set(map(lambda x : x%(2*np.pi), radians)))
radians.sort()
CircleScene.__init__(self, radians, *args, **kwargs)
2015-05-17 15:08:51 -07:00
n, plus_n_choose_4 = tex_mobjects(["n", r"+{n \choose 4}"])
n_choose_2, plus_2_n_choose_4, plus_n = tex_mobjects([
r"{n \choose 2}",r"&+2{n \choose 4}\\",r"&+n"
])
for mob in n, plus_n_choose_4, n_choose_2, plus_2_n_choose_4, plus_n:
mob.shift((SPACE_WIDTH - 2, SPACE_HEIGHT-1, 0))
2015-05-07 21:28:02 -07:00
self.chop_lines_at_intersection_points()
self.add(*self.intersection_dots)
small_lines = [
deepcopy(line).scale_in_place(0.5)
for line in self.lines
]
2015-05-17 15:08:51 -07:00
for mobs, symbol in [
(self.dots, n),
(self.intersection_dots, plus_n_choose_4),
(self.lines, n_choose_2)
]:
self.add(symbol)
compound = CompoundMobject(*mobs)
if mobs in (self.dots, self.intersection_dots):
self.remove(*mobs)
self.animate(SemiCircleTransform(
compound,
deepcopy(compound).scale(1.05),
alpha_func = there_and_back,
run_time = 2.0,
))
else:
compound.highlight("yellow")
self.animate(ShowCreation(compound))
self.remove(compound)
if mobs == self.intersection_dots:
self.remove(n, plus_n_choose_4)
2015-05-07 21:28:02 -07:00
self.animate(*[
Transform(line, small_line, run_time = 3.0)
for line, small_line in zip(self.lines, small_lines)
])
2015-05-17 15:08:51 -07:00
yellow_lines = CompoundMobject(*[
line.highlight("yellow") for line in small_lines
])
self.add(plus_2_n_choose_4)
self.animate(ShowCreation(yellow_lines))
2015-05-07 21:28:02 -07:00
self.dither()
2015-05-17 15:08:51 -07:00
self.remove(yellow_lines)
2015-05-07 21:28:02 -07:00
self.chop_circle_at_points()
self.animate(*[
Transform(p, sp, run_time = 3.0)
for p, sp in zip(self.circle_pieces, self.smaller_circle_pieces)
])
2015-05-17 15:08:51 -07:00
self.add(plus_n)
self.animate(ShowCreation(CompoundMobject(*[
mob.highlight("yellow") for mob in self.circle_pieces
])))
class HowIntersectionChopsLine(CircleScene):
args_list = [
(RADIANS, range(0, 7, 2)),
]
@staticmethod
def args_to_string(*args):
return int_list_to_string(args[1])
def __init__(self, radians, indices, *args, **kwargs):
assert(len(indices) == 4)
indices.sort()
CircleScene.__init__(self, radians, *args, **kwargs)
intersection_point = intersection(
(self.points[indices[0]], self.points[indices[2]]),
(self.points[indices[1]], self.points[indices[3]])
)
if len(intersection_point) == 2:
intersection_point = list(intersection_point) + [0]
pairs = list(it.combinations(range(len(radians)), 2))
lines = [
Line(self.points[indices[p0]], self.points[indices[p1]])
for p0, p1 in [(2, 0), (1, 3)]
]
self.remove(*[
self.lines[pairs.index((indices[p0], indices[p1]))]
for p0, p1 in [(0, 2), (1, 3)]
])
self.add(*lines)
self.animate(*[
FadeOut(mob)
for mob in self.mobjects
if mob not in lines
])
new_lines = [
Line(line.start, intersection_point)
for line in lines
] + [
Line(intersection_point, line.end)
for line in lines
]
self.animate(*[
Transform(
line,
Line(
(-3, h, 0),
(3, h, 0)
),
alpha_func = there_and_back,
run_time = 3.0
)
for line, h in zip(lines, (-1, 1))
])
self.remove(*lines)
self.animate(*[
Transform(
line,
deepcopy(line).scale(1.1).scale_in_place(1/1.1),
run_time = 1.5
)
for line in new_lines
])
2015-05-07 21:28:02 -07:00
class ApplyEulerToMoser(Scene):
def __init__(self, *args, **kwargs):
#Boy is this an ugly implementation..., maybe you should
#make a generic formula manipuating module
Scene.__init__(self, *args, **kwargs)
2015-05-17 15:08:51 -07:00
V = {}
minus = {}
minus1 = {}
E = {}
plus = {}
plus1 = {}
plus2 = {}
F = {}
equals = {}
two = {}
two1 = {}
n = {}
n1 = {}
nc2 = {}
nc4 = {}
nc41 = {}
dicts = [V, minus, minus1, E, plus, plus1, plus2, F,
equals, two, two1, n, n1, nc2, nc4, nc41]
V[1], minus[1], E[1], plus[1], F[1], equals[1], two[1] = \
tex_mobjects(["V", "-", "E", "+", "F", "=", "2"])
F[2], equals[2], E[2], minus[2], V[2], plus[2], two[2] = \
tex_mobjects(["F", "=", "E", "-", "V", "+", "2"])
F[3], equals[3], E[3], minus[3], n[3], minus1[3], nc4[3], plus[3], two[3] = \
tex_mobjects(["F", "=", "E", "-", "n", "-", r"{n \choose 4}", "+", "2"])
F[4], equals[4], nc2[4], plus1[4], two1[4], nc41[4], plus2[4], n1[4], minus[4], n[4], minus1[4], nc4[4], plus[4], two[4] = \
tex_mobjects(["F", "=", r"{n \choose 2}", "+", "2", r"{n \choose 4}", "+", "n","-", "n", "-", r"{n \choose 4}", "+", "2"])
F[5], equals[5], nc2[5], plus1[5], two1[5], nc41[5], minus1[5], nc4[5], plus[5], two[5] = \
tex_mobjects(["F", "=", r"{n \choose 2}", "+", "2", r"{n \choose 4}", "-", r"{n \choose 4}", "+", "2"])
F[6], equals[6], nc2[6], plus1[6], nc4[6], plus[6], two[6] = \
tex_mobjects(["F", "=", r"{n \choose 2}", "+", r"{n \choose 4}", "+", "2"])
F[7], equals[7], two[7], plus[7], nc2[7], plus1[7], nc4[7] = \
tex_mobjects(["F", "=", "2", "+", r"{n \choose 2}", "+", r"{n \choose 4}"])
for d in dicts:
if not d:
continue
main_key = d.keys()[0]
main_center = d[main_key].get_center()
for key in d.keys():
d[key] = deepcopy(d[main_key]).shift(
d[key].get_center() - main_center
)
2015-05-07 21:28:02 -07:00
self.animate(*[
2015-05-17 15:08:51 -07:00
SemiCircleTransform(d[1], d[2], run_time = 2.0)
for d in [V, minus, E, plus, F, equals, two]
2015-05-07 21:28:02 -07:00
])
2015-05-17 15:08:51 -07:00
self.dither()
self.remove(*self.mobjects)
self.animate(
Transform(V[2], CompoundMobject(n[3], minus1[3], nc4[3])),
*[
Transform(d[2], d[3])
for d in [F, equals, E, minus, plus, two]
]
)
self.dither()
2015-05-07 21:28:02 -07:00
self.remove(*self.mobjects)
2015-05-17 15:08:51 -07:00
self.animate(
Transform(E[3], CompoundMobject(
nc2[4], plus1[4], two1[4], nc41[4], plus2[4], n1[4]
)),
*[
Transform(d[3], d[4])
for d in [F, equals, minus, n, minus1, nc4, plus, two]
]
)
self.dither()
self.remove(*self.mobjects)
self.animate(
Transform(
CompoundMobject(plus2[4], n1[4], minus[4], n[4]),
Point((SPACE_WIDTH, SPACE_HEIGHT, 0))
),
*[
Transform(d[4], d[5])
for d in [F, equals, nc2, plus1, two1,
nc41, minus1, nc4, plus, two]
]
)
self.dither()
self.remove(*self.mobjects)
self.animate(
Transform(nc41[5], nc4[6]),
Transform(two1[5], Point(nc4[6].get_center())),
*[
Transform(d[5], d[6])
for d in [F, equals, nc2, plus1, nc4, plus, two]
]
)
self.dither()
self.remove(*self.mobjects)
self.animate(
SemiCircleTransform(two[6], two[7]),
SemiCircleTransform(plus[6], plus[7]),
*[
Transform(d[6], d[7])
for d in [F, equals, nc2, plus1, nc4]
]
)
self.dither()
self.remove(two[6])
two = two[7]
one = tex_mobject("1").shift(two.get_center())
two.highlight("red")
self.add(two)
self.dither()
self.animate(SemiCircleTransform(two, one))
class FormulaRelatesToPowersOfTwo(Scene):
def __init__(self, *args, **kwargs):
Scene.__init__(self, *args, **kwargs)
pof2_range = [1, 2, 3, 4, 5, 10]
strings = [
[
r"&1 + {%d \choose 2} + {%d \choose 4} ="%(n, n),
r"1 + %d + %d ="%(choose(n, 2), choose(n, 4)),
r"%d \\"%moser_function(n)
]
for n in [1, 2, 3, 4, 5, 10]
]
everything = tex_mobjects(sum(strings, []), size = r"\large")
scale_factor = 1
for mob in everything:
mob.scale(scale_factor)
CompoundMobject(*everything).show()
forms = everything[0::3]
sums = everything[1::3]
results = everything[2::3]
self.add(*forms)
2015-05-07 21:28:02 -07:00
self.animate(*[
2015-05-17 15:08:51 -07:00
FadeIn(s) for s in sums
2015-05-07 21:28:02 -07:00
])
self.dither()
2015-05-17 15:08:51 -07:00
self.animate(*[
Transform(deepcopy(s), result)
for s, result in zip(sums, results)
])
powers_of_two = [
tex_mobject("2^{%d}"%(i-1)
).scale(scale_factor
).shift(result.get_center()
).highlight()
for i, result in zip(pof2_range, results)
]
2015-05-07 21:28:02 -07:00
self.dither()
2015-05-17 15:08:51 -07:00
self.remove(*self.mobjects)
self.add(*forms + sums + results)
self.animate(*[
SemiCircleTransform(result, pof2)
for result, pof2 in zip(results, powers_of_two)
])
2015-05-07 21:28:02 -07:00
class DrawPascalsTriangle(PascalsTriangleScene):
def __init__(self, *args, **kwargs):
PascalsTriangleScene.__init__(self, *args, **kwargs)
self.remove(*self.mobjects)
self.add(self.coords_to_mobs[0][0])
for n in range(1, nrows):
starts = [deepcopy(self.coords_to_mobs[n-1][0])]
starts += [
CompoundMobject(
self.coords_to_mobs[n-1][k-1],
self.coords_to_mobs[n-1][k]
)
for k in range(1, n)
]
starts.append(deepcopy(self.coords_to_mobs[n-1][n-1]))
self.animate(*[
Transform(starts[i], self.coords_to_mobs[n][i],
run_time = 1.5, black_out_extra_points = False)
for i in range(n+1)
])
class PascalRuleExample(PascalsTriangleScene):
def __init__(self, nrows, *args, **kwargs):
assert(nrows > 1)
PascalsTriangleScene.__init__(self, nrows, *args, **kwargs)
self.dither()
n = randint(2, nrows-1)
k = randint(1, n-1)
self.coords_to_mobs[n][k].highlight("green")
self.dither()
plus = tex_mobject("+").scale(0.5)
nums_above = [self.coords_to_mobs[n-1][k-1], self.coords_to_mobs[n-1][k]]
plus.center().shift(sum(map(Mobject.get_center, nums_above)) / 2)
self.add(plus)
for mob in nums_above + [plus]:
mob.highlight("yellow")
self.dither()
class PascalsTriangleWithNChooseK(PascalsTriangleScene):
def __init__(self, *args, **kwargs):
PascalsTriangleScene.__init__(self, *args, **kwargs)
self.generate_n_choose_k_mobs()
mob_dicts = (self.coords_to_mobs, self.coords_to_n_choose_k)
for i in [0, 1]:
self.dither()
self.remove(*self.mobjects)
self.animate(*[
SemiCircleTransform(
deepcopy(mob_dicts[i][n][k]),
mob_dicts[1-i][n][k]
)
for n, k in self.coords
])
self.remove(*self.mobjects)
self.add(*[mob_dicts[1-i][n][k] for n, k in self.coords])
2015-05-12 14:51:21 -07:00
class PascalsTriangleNChooseKExample(PascalsTriangleScene):
args_list = [
(N_PASCAL_ROWS, 5, 3),
]
@staticmethod
def args_to_string(nrows, n, k):
return "%d_n=%d_k=%d"%(nrows, n, k)
def __init__(self, nrows, n, k, *args, **kwargs):
PascalsTriangleScene.__init__(self, nrows, *args, **kwargs)
dither_time = 0.5
triangle_terms = [self.coords_to_mobs[a][b] for a, b in self.coords]
formula_terms = left, n_mob, k_mob, right = tex_mobject([
r"\left(", str(n), r"\atop %d"%k, r"\right)"
])
formula_center = (SPACE_WIDTH - 1, SPACE_HEIGHT - 1, 0)
self.remove(*triangle_terms)
self.add(*formula_terms)
self.dither()
self.animate(*
[
ShowCreation(mob) for mob in triangle_terms
]+[
ApplyMethod((Mobject.shift, formula_center), mob)
for mob in formula_terms
],
run_time = 1.0
)
self.remove(n_mob, k_mob)
for a in range(n+1):
row = [self.coords_to_mobs[a][b] for b in range(a+1)]
a_mob = tex_mobject(str(a))
a_mob.shift(n_mob.get_center())
a_mob.highlight("green")
self.add(a_mob)
for mob in row:
mob.highlight("green")
self.dither(dither_time)
if a < n:
for mob in row:
mob.highlight("white")
self.remove(a_mob)
self.dither()
for b in range(k+1):
b_mob = tex_mobject(str(b))
b_mob.shift(k_mob.get_center())
b_mob.highlight("yellow")
self.add(b_mob)
self.coords_to_mobs[n][b].highlight("yellow")
self.dither(dither_time)
if b < k:
self.coords_to_mobs[n][b].highlight("green")
self.remove(b_mob)
self.animate(*[
ApplyMethod((Mobject.fade, 0.2), mob)
for mob in triangle_terms
if mob != self.coords_to_mobs[n][k]
])
self.dither()
2015-05-07 21:28:02 -07:00
class PascalsTriangleSumRows(PascalsTriangleScene):
def __init__(self, *args, **kwargs):
PascalsTriangleScene.__init__(self, *args, **kwargs)
pluses = []
powers_of_two = []
equalses = []
powers_of_two_symbols = []
plus = tex_mobject("+")
desired_plus_width = self.coords_to_mobs[0][0].get_width()
if plus.get_width() > desired_plus_width:
plus.scale(desired_plus_width / plus.get_width())
for n, k in self.coords:
if k == 0:
continue
new_plus = deepcopy(plus)
new_plus.center().shift(self.coords_to_mobs[n][k].get_center())
new_plus.shift((-self.cell_width / 2.0, 0, 0))
pluses.append(new_plus)
equals = tex_mobject("=")
equals.scale(min(1, 0.7 * self.cell_height / equals.get_width()))
for n in range(self.nrows):
new_equals = deepcopy(equals)
pof2 = tex_mobjects(str(2**n))
symbol = tex_mobject("2^{%d}"%n)
desired_center = np.array((
self.diagram_width / 2.0,
self.coords_to_mobs[n][0].get_center()[1],
0
))
new_equals.shift(desired_center - new_equals.get_center())
desired_center += (1.5*equals.get_width(), 0, 0)
scale_factor = self.coords_to_mobs[0][0].get_height() / pof2.get_height()
for mob in pof2, symbol:
mob.center().scale(scale_factor).shift(desired_center)
symbol.shift((0, 0.5*equals.get_height(), 0)) #FUAH! Stupid
powers_of_two.append(pof2)
equalses.append(new_equals)
powers_of_two_symbols.append(symbol)
self.animate(FadeIn(CompoundMobject(*pluses)))
run_time = 0.5
to_remove = []
for n in range(self.nrows):
start = CompoundMobject(*[self.coords_to_mobs[n][k] for k in range(n+1)])
to_remove.append(start)
self.animate(
Transform(start, powers_of_two[n]),
FadeIn(equalses[n]),
run_time = run_time
)
self.dither()
self.remove(*to_remove)
self.add(*powers_of_two)
for n in range(self.nrows):
self.animate(SemiCircleTransform(
powers_of_two[n], powers_of_two_symbols[n],
run_time = run_time
))
self.remove(powers_of_two[n])
self.add(powers_of_two_symbols[n])
2015-04-30 15:26:56 -07:00
2015-04-14 17:55:25 -07:00
2015-05-12 14:51:21 -07:00
class MoserSolutionInPascal(PascalsTriangleScene):
args_list = [
(N_PASCAL_ROWS, n)
for n in range(3, 8)
] + [
(BIG_N_PASCAL_ROWS, 10)
]
@staticmethod
def args_to_string(nrows, n):
return "%d_n=%d"%(nrows,n)
def __init__(self, nrows, n, *args, **kwargs):
PascalsTriangleScene.__init__(self, nrows, *args, **kwargs)
term_color = "green"
self.generate_n_choose_k_mobs()
self.remove(*[self.coords_to_mobs[n0][k0] for n0, k0 in self.coords])
terms = one, plus0, n_choose_2, plus1, n_choose_4 = tex_mobjects([
"1", "+", r"{%d \choose 2}"%n, "+", r"{%d \choose 4}"%n
])
target_terms = []
for k in range(len(terms)):
if k%2 == 0 and k <= n:
new_term = deepcopy(self.coords_to_n_choose_k[n][k])
new_term.highlight(term_color)
else:
new_term = Point(
self.coords_to_center(n, k)
)
target_terms.append(new_term)
self.add(*terms)
self.dither()
self.animate(*
[
FadeIn(self.coords_to_n_choose_k[n0][k0])
for n0, k0 in self.coords
if (n0, k0) not in [(n, 0), (n, 2), (n, 4)]
]+[
Transform(term, target_term)
for term, target_term in zip(terms, target_terms)
]
)
self.dither()
term_range = range(0, min(4, n)+1, 2)
target_terms = dict([
(k, deepcopy(self.coords_to_mobs[n][k]).highlight(term_color))
for k in term_range
])
self.animate(*
[
SemiCircleTransform(
self.coords_to_n_choose_k[n0][k0],
self.coords_to_mobs[n0][k0]
)
for n0, k0 in self.coords
if (n0, k0) not in [(n, k) for k in term_range]
]+[
SemiCircleTransform(terms[k], target_terms[k])
for k in term_range
]
)
self.dither()
for k in term_range:
if k == 0:
above_terms = [self.coords_to_n_choose_k[n-1][k]]
elif k == n:
above_terms = [self.coords_to_n_choose_k[n-1][k-1]]
else:
above_terms = [
self.coords_to_n_choose_k[n-1][k-1],
self.coords_to_n_choose_k[n-1][k],
]
self.add(self.coords_to_mobs[n][k])
self.animate(Transform(
terms[k],
CompoundMobject(*above_terms).highlight(term_color)
))
self.remove(*above_terms)
self.dither()
terms_sum = tex_mobject(str(moser_function(n)))
terms_sum.shift((SPACE_WIDTH-1, terms[0].get_center()[1], 0))
terms_sum.highlight(term_color)
self.animate(Transform(CompoundMobject(*terms), terms_sum))
2015-04-14 17:55:25 -07:00
##################################################
if __name__ == "__main__":
2015-05-07 21:28:02 -07:00
scene_classes = [
pair[1]
for pair in inspect.getmembers(
sys.modules[__name__],
lambda obj : inspect.isclass(obj) and issubclass(obj, Scene)
)
]
2015-05-07 21:28:02 -07:00
command_line_create_scene(sys.argv[1:], scene_classes, MOVIE_PREFIX)