Math 640: EXPERIMENTAL MATHEMATICS
Spring 2009 (Rutgers University) Webpage
http://sites.math.rutgers.edu/~zeilberg/math640_09.html
Last Update: May 18, 2009.
Description
Experimental Mathematics used to be considered an oxymoron, but the
future of mathematics is in that direction.
In addition to learning the philosophy and methodology of this budding
field, students will become computer-algebra
wizards, and that should be very helpful in whatever mathematical specialty
they'll decide to do research in.
We will first learn Maple, and how to program in it.
This semester we will explore the fascinating field of
combinatorial statistical physics, and critical phenomena.
We will explore rigorous, semi-rigorous, and non-rigorous approaches,
mostly using symbolic computation, but also numeric computations,
using "Monte Carlo".
But the actual content is not that important, it is mastering the methodology
of computer-generated and computer-assisted research that is so crucial for
your future.
There are no prerequisites, and no previous programming knowledge is assumed.
Also, very little overlap
with previous years, so people who have taken it in previous
years are more than welcome to take it again, and become even
greater wizards. The final projects for this class may lead to
journal publications.
Added March 18, 2009: Pick a final project.
Diary and Homework
Programs done on Thurs., Jan. 22, 2009
-
Jan22.txt
,
contains procedure a(); that does nothing whatsoever.
The file also contains the assignment of mentees to mentors.
Homework for Thurs., Jan. 22, class (due Jan. 26, 2009)
-
Read and do all the examples, plus make up similar ones,
in the first 30 pages of Frank Garvan's
awesome Maple booklet.
-
Do a first reading of the
"textbook", just to get a feel for the subject.
Programs used and done on Monday, Jan. 26, 2009
-
GuessRat.txt,
(so far we haven't used it, but we will use it later).
-
Jan26.txt,
Brownian motion.
-
Jan26a.txt,
Counting one dimensional walks (so far only contains W(n), that
inputs a pos. integer n and outputs the set of walks with n steps
with unit steps either -1 or 1.)
Homework for Monday, Jan. 26, 2009, class (due Jan. 29, 2009)
-
(for novices only)
Read and do all the examples, plus make up similar ones,
in pages 30-60 of Frank Garvan's
awesome Maple booklet.
-
(mandatory for experts, highly recommended for novices)
Modify everything in
Jan26.txt,
so that the program B(n) becomes B(n,p), where now you toss a loaded coin
with probability of winning a dollar being p (and losing a dollar being
1-p). Normalize the walk by first subtracting the expectation
n(2p-1), and then dividing by the standard deviation
sqrt(4np(1-p)). Of course you first must change fc(n) to lc(n,p)
for a loaded coin. (Hint: if p=a/b, then use rand(1..b)() to generate
an integer between 1 and a and decide that it is -1 if you get
something between 1 and a and 1 if you get something between a+1 and b)
[corrected Jan. 29, 2009, thanks to Dennis Hou].
-
(mandatory for experts, highly recommended for novices)
Write a program G(n,k), that inputs non-neg. integers n and k and
outputs the set of sequences of {-1,1} of
length n that add up to k and such that all the partial sums
are non-negative. For example
G(2,0); should yield {[1,-1]} . G(3,0); should yield {}, and
G(4,0); should yield {[1,-1,1,-1],[1,1,-1,-1]} .
Programs done on Thursday, Jan. 29, 2009
-
Jan29.txt,
(constructing and counting one-dimensional walks without and with
restrictions, The Chung-Feller phenomenon)
-
Jan29a.txt,
Simulation of Gambler's Ruin problem.
Homework for Thurs., Jan. 29, 2009, class (due Feb. 2, 2009)
-
(for novices only)
Read and do all the examples, plus make up similar ones,
in pages 60-90 of Frank Garvan's
awesome Maple booklet. Hand-in a sample of 2 pages.
-
(For everyone!)
Using the methods of experimental mathematics, conjecture
a closed-form expression for gnk(n,k) (note that if n+k is
odd, then it is 0), the number of ways of starting at the
origin, walking n steps, and winding-up at k, where at
each step you can go forward or backward one unit.
Once you conjectured it, prove it rigorously, by induction, using
the "defining recurrence" of gnk(n,k) (plus the boundary conditions
and initial conditions). Deduce, as a corollary, the
closed-form expression (2n)!/(n!(n+1)!) for gnk(2n,0) (the
famous Catalan numbers)
-
($5 to be divided among all solvers by Monday).
Find a neat combinatorial proof (w/o looking it up!)
of the Chung-Feller phenomenon that the number of ways of
walking 2n steps from the origin back to the origin,
with exactly 2k steps that lie to the left of the origin,
is independent of k, and hence they are all equal to each
other for k=0,1,2, ..., n, and hence each of them has
binomial(2n,n)/(n+1) members, in particular proving once again
that gnk(2n,0) is given by the Catalan numbers.
[Added Feb. 2, 2009: Dennis Hou won this prize!].
-
(for everyone)
Modify the Gambler's ruin simulation GRe, in
Jan29a.txt,
to take another input, p, a rational number, where p is the chance
of winning a dollar.
-
(For everyone)
In class we conjectured, using simulation, that the probability of
a gambler (with a fair coin), who currently has i dollars, and
continues to play until he or she lose everything or has n dollars,
is i/n, and the expected duration of the game is i(n-i). Prove these
facts rigorously and humanly.
(Hint: set-up a system of linear equations for p(i), the prob. of winning
with i dollars (and n fixed), and analogously for f(i), the duration of
the game).
Programs done on Mon., Feb. 2, 2009
-
Feb2.txt,
(contains procedure W(m,n,S) that inputs pos. integers m and n
and a set of pos. integers S, and outputs the total number
of possible "games" whose final score was m:n, and the
atomic scoring events are from S.
It also contains,
G(m,n,S) is the analogous program for the number of "good"
games, where the visiting team was never ahead.
-
GuessHolo2,
that contains procedures Findrec(L,n,N,K) that inputs a sequence of
numbers and guesses a recurrence operator ope(n,N) annihilating N
of up to "complexity" (degree+order) K. It also contains
procedure Zinn(L) that inputs a sequence L, and estimates, if
possible, its asymptotic behavior in the form mu^n n^theta.
-
AsyRec,
we may use it later. It finds the asymptotics of solutions of
linear recurrence equations with polynomial coefficients.
Homework for Mon., Feb. 2 2009, class (due Feb. 5, 2009)
-
(for novices only)
Read and do all the examples, plus make up similar ones,
in pages 90-120 of Frank Garvan's
awesome Maple booklet. Hand-in a sample of 2 pages.
-
In class we empirically found out that the asymptotics
for the Catalan numbers is 4n/n3/2/Pi1/2.
Prove it rigorously, using Stirling's approximation for n!, or otherwise.
-
Experiment with
[seq(W(i,i,S), i=1..50)];
and
[seq(G(i,i,S), i=1..50)];
for various choices of S. Use Zinn to conjecture asymptotics
μn nθ with "nice" (rational) θ.
Also experiment with the "probability of being good"
[seq(G(i,i,S)/W(i,i,S), i=1..50)];
and its asymptotics. Is θ always the same?
-
Another way of thinking of W(m,n,S) is as the number of
walks in the 2D square lattice from the origin to [m,n]
using the step sizes from S. For G(m,n,S) it is the number
of such walks that stay in m ≥ n . Write analogous
programs for 3D, W3D(m,n,k,S) and G3D(m,n,k,S)
(that stay in m ≥ n ≥ k. ). Check if
the sequences
[seq(W3D(i,i,i,S), i=1..20)];
and
[seq(G3D(i,i,i,S), i=1..20)];
are in Sloane for S={1}, S={1,2}. Experiment with other S's
and apply Zinn to them. Also for the sequence of
probabilities of being good
[seq(G3D(i,i,i,S)/W3D(i,i,i,S), i=1..30)];
Programs done on Thurs., Feb. 5, 2009
-
Feb5.txt,
contains the following procedures:
-
LD(p,x): inputs a polynomial p in x encoding
a loaded die (the prob. of winning i dollars is
the coeffcient of x^i), and outputs a random
throw of that die.
-
GGR(p,x,i,N): simulates a game in a casino that follows
the die coded by p(x), where one enters with i dollars
and plays as soon as one has no money (or negative money)
or N dollars (or more). It returns the final outcome
followed by the number of throws in the game.
-
MG(p,x,i,N,K): plays GGR(p,x,i,N) K times and records the
ratio of wins over K, and the average duration. For K
big, it should approximate the prob. of winning with i dollars,
and the expected length.
Homework for Thurs., Feb. 5 2009, class (due Feb. 9, 2009)
-
Modify LD(p,x) to write a procedure LD2(p,x,y) that inputs
a polynomial p in both x and y, with the meaning that
the coeff. of xiyj is the probability
of lending the pair [i,j], and outputs a random throw.
(We would need this when we will study random walks in the plane).
-
[Challenging!] Write a procedure
GRP(p,x,N) that inputs a polynomial p in x
(describing, as above, a certain [usually] loaded die),
and a positive integer N, and outputs the list of length N-1
whose i-th entry is the prob. of winning in the GR game
if you start at i.
(Hint: Set up a system of linear equations and a set of variables
and use the Maple solve command.)
-
Assuming that you did the above challenging procedure, test it
by comparing the first output of GGR for various i's and N's.
-
[equally Challenging!] Write a procedure
GRP(p,x,N) that inputs a polynomial p in x
(describing, as above, a certain [usually] loaded die),
and a positive integer N, and outputs the list of length N-1
whose i-th entry is the expected duration of the GR game
if you start at i.
(Hint: Set up a system of linear equations and a set of variables
and use the Maple solve command.)
Programs done on Mon., Feb. 9, 2009
-
Feb9.txt,
contains, in addition to the functions of Feb5.txt
(listed in HelpM();):
the following procedures:
-
Probs(p,x,N): inputs a polynomial in the variable x, describing
a discrete probability distribution of an arbitrary die,
as well as a (numerical) pos. integer N, returns the list of length N-1
whose ith entry is the exact probability of
leaving the casino a winner.
-
ED(p,x,N):
inputs a polynomial in the variable x, describing
a discrete probability distribution of an arbitrary die,
as well as a (numerical) pos. integer N, returns the list of length N-1
whose ith entry is the exact expected duration
of the game (the expected number of die-rolls until the game ends,
either as a winner or as a loser.)
-
SymProbs(p,x,i,N):
inputs a polynomial in the variable x, describing
a discrete probability distribution of an arbitrary die,
as well symbols N and i, returns one
symbolic(!) explicit formula for the probability
of winning.
Remark: one of the lines have been modified, so the program
runs now (see ex. 1 below).
Homework for Mon., Feb. 9 2009, class (due Feb. 12, 2009)
-
The corrected version of SymProbs has the line
eq:={seq(subs(i=j,GS)=0,j=ldegree(P,x)+1..0)}
union
{seq(subs(i=j+N,GS)=1,j=0..degree(P,x)-1)}:
which works. The previous version, in class, was
eq:={seq(subs(i=j,GS)=0,j=ldegree(P,x)..0)}
union
{seq(subs(i=j+N,GS)=1,j=0..degree(P,x))}:
Explain why it didn't work before, but it works now.
-
Test the corrected procedure
SymProbs(p,x,i,N), by comparing its output
(with the given numeric N) to Probs(p,x,N),
for the following polynomials p and pos. integers N
-
p=(x+1/x)/2, N=30.
-
p=1/3*x+2/3*(1/x), N=24.
-
p=(x+x2+1/x+x-2)/4, N=27.
-
ED(p,x,N), gives the expected durations of the game,
no matter what. Modify it and write two procedures:
EDlose(p,x,N) and EDwin(p,x,N) that computes the
duration conditioned on the fact that you lost and
won respectively. Check that their outputs add-up to
the output of ED(p,x,n)
-
(challenging!)
Modify SymProbs(p,x,i,N) to write a program
SymED(p,x,i,N) that outputs a formula for
the expected duration of the game.
Hint: if x=1 is a double root (the fair case) then
you first find a particular solution that
is quadratic in i, i.e.
PS=ai^2+ bi +c
plug-it into the recurrence,expand, and compare
coefficients of powers of i, and equate it to 1,
and solve for a, b,c.
If x=1 is not a double root, then
you try
PS=ai+ b
then the new general solution is
PS+ WhatWeHadBefore
Programs done on Thu., Feb. 12, 2009
-
Feb12.txt,
contains the following procedures
-
DT(T,a,b,i,eps): inputs a binary tree T, and numbers a and b, and a pos. integer i, and a small pos. number eps
and outputs a drawing of the tree, pointing up, lying between x=a and x=b and the root at
[(a+b)/2, i].
-
Trees(k): the set of all trees of depth ≤ k
-
In addition, Kellen Myers kindly allowed me to post here his
neat programs,
that contain procedures: DisplayTree(T) , AllTrees(h) , NumTrees(h) , ShowTrees(h).
Special Homework for Thu. Feb. 12, 2009, class (due Feb. 14, 2009)
[modified Feb. 14, 2009, 11:10am]
(No extension!)
Added Feb. 14, 2009: A contest for the nicest picture, a chocolate box.
For c any complex mumber, define a transformation Mc(z)=z^2+c. A complex number c is
(K,L)-good if iterating the map Mc K times, starting at z=0, i.e.,
doing z0=0 and zi+1=Mc(zi), for i=0, ..., K-1, in other words
McK(0), has absolute value less than L.
-
Write a procedure IsGood(c,K,L) that inputs a complex number c
(in the form c=a+b*I, where a and b are floating-points) and outputs true or false
according to whether c is (K,L)-good or not, respectively.
-
Write a program MS(a,R,K,L) that inputs a number a, a small positive real number R (the resolution),
and pos. integer K and L (K ≥ 10, L ≥ 3), and outputs a picture of all the
(K,L) good points, with resolution R, i.e. all the points of the form
A*R+B*R*I, with A and B integers such that A*R and B*R are both between -a and a.
in the complex plane.
Hints 1. to get the point corresponding to the complex number c, do [coeff(c,I,0),coeff(c,I,1)].
2. Use plot(S,style=point, axes=none); to plot a set of points.
-
Put the code in a file and call it vd. Then download the following input file
invd,
(keeling the name invd).
Experiment with several choices of a,R,K,L, and pick the nicest picture to hand-out.
The smaller the R, the better picture, but it will take much longer.
Then, type
maple < invd
and look out for a file called vd.gif at the same directory. Print it out
(Added Feb. 16, 2009: the winners of the contest were
Kellen Myers's animated Mandelbrot set
(but he cheated, using Mathematica)
and
Emilie Hogan's pretty Mandelbrot set.
They each get a chocolate box as a prize.)
Regular Homework for Thu. Feb. 12, 2009, class (due Feb. 16, 2009)
-
(Modification of last time's challenging problem).
$10 award to be divided among all correct solutions.
Modify SymProbs(p,x,i,N) to write a program
SymED(p,x,i,N) that outputs a formula for
the expected duration of the game.
Hint: if x=1 is a double root (the fair case) then
you first find a particular solution that
is quadratic in i, i.e.
PS=ai^2
plug-it into the recurrence,
PS-add(coeff(P,x,j)*subs(i=i-j,PS),j=ldegree(P,x)..degree(P,x))=1
expand, and compare
coefficients
and solve for a.
If x=1 is not a double root, then
you try, as above, but with
PS=ai
then the new general solution is
PS+ WhatWeHadBefore
and proceed as before. Now test your output by plugging-in specific values for N and i
against the output of ED(p,x,N);
-
The binary trees we talked about in class are a little weird in the sense that
it is possible to have a left son but no right son, and vice versa.
A complete binary tree is an ordered tree where every vertex has either
no children, or exactly two children.
Write a Maple program CBT(k) that inputs a pos. integer k, and outputs all
complete binary trees with exactly k leaves. For example
CBT(1)={[]}; CBT(2)={[[],[]]}; CBT(3)={[[],[[],[]]],[[[],[]],[]]}.
Conjecture an exact formula for nops(CBT(k)).
-
$2 dollars to be divided: prove your conjecture about nops(CBT(k)).
-
Modify the drawing program DT to draw these kinds of trees. Note that now
we don't have {} in the data structure, just []'s.
Programs done on Mon., Feb. 16, 2009
-
Feb16.txt,
contains the following procedures
-
CBT(k): inputs a pos. integer k and outputs the set
of all Complete Binary Trees with k leaves
(in the format: T=[] or T=[T1,T2], where T1 and T2 are
trees on their own right).
-
cbt(k):inputs a pos. integer k and outputs the number of
Complete Binary Trees with k leaves
-
LC(p): inputs a rational number p, between 0 and 1, and
outputs 1 (success) with probability p
and 0 (failure) with probability 1-p.
-
RCBT(p,k,Sad, Happy): inputs a rational function p, a pos. integer k
(usually large), and words Sad and Happy, and generates
a random family tree where each person has probability p of
having 2 children and prob. 1-p of having no children
(no other options). It returns Happy of the tree is "infinite"
(as at least k leaves), and Sad, if it has less than k leaves
(it died out).
-
RCBTH(k): inputs a positive integer k and generates a random
complete binary family tree with p=1/2, of size at least k,
in which case it returns 1, or of size less than k, in which case
it returns 0.
(Note: the last line has been changed from class, please replace the
previous (class) version with this current version).
Homework for Mon. Feb. 16, 2009, class (due Feb. 19, 2009)
-
Modify CBT(k) to write a program CTT(k) that inputs
a pos. k and outputs all the complete ternary
trees (ordered trees such that each vertex has either 0 children
or 3 children) with exactly k leaves.
-
Modify CBT(k) to write a program CQT(k) that inputs
a pos. k and outputs all the complete quad
trees (ordered trees such that each vertex has either 0 children
or 4 children) with exactly k leaves.
-
Modify cbt(k) to write a program ctt(k) that inputs
a pos. k and outputs the number of complete ternary
trees (ordered trees such that each vertex has either 0 children
or 3 children) with exactly k leaves.
Check whether [seq(ctt(k), k=1..20)] is in Sloane.
Using Sloane, or otherwise, conjecture c closed form
formula, and try and prove it.
-
Modify cbt(k) to write a program cqt(k) that inputs
a pos. k and outputs the number of complete quad
trees (ordered trees such that each vertex has either 0 children
or 4 children) with exactly k leaves.
Check whether [seq(cqt(k), k=1..20)] is in Sloane.
Using Sloane, or otherwise, conjecture c closed form
formula, and try and prove it.
-
Modify RCBT(p,k,Sad, Happy) to write
a program RCTT(p,k,Sad,Happy) that does the analogous think
but regarding complete ternary trees.
-
Using human ingenuity, try to find a formula, in terms of p, for
the probability of a random complete ternary
family tree lasting for ever.
Test your formula by running RCTT many times.
Programs done on Thur., Feb. 19, 2009
-
Feb19.txt,
contains the following procedures
-
LC(p): inputs a rational number between 0 and 1 and outputs
1 with prob. p and 0 with prob. 1-p
-
RG(n,p): a random graph on n vertices with the prob. of an edge
being p
-
CC(G,i,n): The connected component of vertex i in graph G
whose vertices are labelled {1, ..., n}
-
LaCu(G,n): The size of the largest cluster in a graph G on {1, ..., n}
-
N(n,eps,K): the average of LaCu(G,n) over K independent choices
of LaCu(G,n) with p=(1/(n-1))*(1+eps) .
In other words, an approximation to the expected largest
cluster size of a random graph on n vertices.
-
CER(n,eps,K): Empirically checks the Erdos-Renyi asymptotic
formulas (warning: n may have to be fairly large for the asymptotics
to kick-in).
Homework for Thur. Feb. 19, 2009, class (due Feb. 23, 2009)
-
At the beginning of today's class we showed how to derive
everything "analytically" (or rather algebraically) about
branching processes. For the complete binary tree,
the probability generating function, F=F(p,z),
(over all finite ("dead") trees)
satisfies the equation
F=(1-p)*z+p*z*F2 .
By plugging-in z=1, you can get an equation for the probability of dying out.
By doing subs(z=1,diff(F,z)) you get the expected size.
Do the analogous things for complete ternary trees and complete
quad trees, and verify that while the "boiling point"
(transition prob.) are different (namely 1/2,1/3,1/4 resp.)
the critial exponents of the quantities (obtained by setting p=pc+x,
and looking at the lowest-order term in x), are all the same.
-
(challenge, 5 dollars, I don't know the answer myself)
Experiment with CER(n,eps,K) for fairly large (but not too large!)
inputs of n and K. For eps not 0, it should be close to 1.
When I did it for eps negative I got something way too small.
Is it the program's fault? Were Erdos and Renyi wrong?
Did Slade have a typo? Is it correct, but the n and K that we can
do in real time are too small? I'd like to know.
-
A triangle in a graph are three vertices {i,j,k} such that
{{i,j}, {j,k}, {i,k}} are edges. Write a program
NT(G,n) that inputs a graph (as a set of pairs) of {1, ..., n}
and outputs the number of triangles.
-
Can you find the "transition point", for p,
for the number of triangles,
when it goes from few and far between to lots and lots?
-
A tree is a connected graph on n vertices
without cycles (and it is easy to see that it must have n-1 edges).
Write a program RG1(n,p) that does the same as RG(n,p) but
quits as soon as it has n-1 edges, or returns FAIL.
Write another program that runs RG1(n,p) many times (say K),
and counts how many times you get a tree and how many times you don't.
Can you guess a transition probability that goes from being unlikely
to likely?
Programs done on Mon., Feb. 23, 2009
-
Feb19a.txt,
the same as Feb19.txt, but procedure LaCu(G,n) (and hence CER(n,eps,K))
were made much more efficient
-
Feb23.txt,
contains procedures
-
IsBad(w1): inputs a walk,w1, in the 2D square-lattice, represented as
a list conisting of -1(Back), 1(Front), -2(Down), 2(Up) and
outputs true if it has a suffix that is a loop
(i.e. a list with as many 1's as -1's AND as many 2's as -2's)
-
SAW(n): inputs a non-neg. integer n, and outputs the set
of n-step self-avoiding walks in the 2D square-lattice
-
It also contains the list, taken from Sloane, taken from Jansen
for the number of self-avoiding walks with n steps for n=0..71.
It is called L.
Homework for Mon. Feb. 23, 2009, class (due Feb. 26, 2009)
-
(Given last time,
but prize raised to 10 dollars, I don't know the answer myself)
Experiment with CER(n,eps,K) for fairly large (but not too large!)
inputs of n and K. For eps not 0, it should be close to 1.
When I did it for eps negative I got something way too small.
Is it the program's fault? Were Erdos and Renyi wrong?
Did Slade have a typo? Is it correct, but the n and K that we can
do in real time are too small? I'd like to know.
[Added Feb. 26, 2009: Congratulations to Liyang Diao for
figuring out the discrepancy. She won the $10 prize.
See her
writeup and read the
Erdos-Renyi original 1961 article, kindly found by Liyang Diao.
[Added March 2: Read
Gordon Slade's Email
clarifying the apparent inaccuracy (posted with his kind permission)]
-
Write a program SAWd(n,d) that inputs two pos. integers, n and d,
and outputs the set of self-avoiding walks in the d-dimensional
(usual, hyper-cubic) lattice.
-
Write a program SAWp(n) that inputs a positive integer n, and outputs
the set of self-avoiding walks on n steps, that stay in the
positive quadrant (x &ge 0, y ≥ 0).
-
Write a program SAWab(n,a,b) that inputs a positive integer n, and
non-neg. integers a and b, and
outputs
the set of self-avoiding walks on n steps, that start at the
origin,
that stay in the -a ≤ y &le b.
Programs done on Thurs., Feb. 26, 2009
-
Feb26.txt,
contains procedure FCmt(L), that inputs an increasing
list of integers, believed to be asymptotic to
Cμnnθ for some constants
C, μ (the connective constant), and θ (the critical
exponent, or rather one less). As Michael Ratner noticed, it
should be applied to the even and odd parts separately for
the case of the enumerating sequence for self-avoiding walks, L,
that is stored in
Feb23.txt.
-
Feb26a.txt,
contains procedures
DrawWalk(w) (to draw a SAW w), and RSAW(n) (a random SAW of length n).
Homework for Thur. Feb. 26, 2009, class (due March 2, 2009)
-
Thanks to Michael Ratner, we know that Zinn (and also
our own FCmt(L)) gives reasonable answers if
you extract the even parts and odd parts separately.
(to find the real μ, you have to take the square-root
of the μ for the even (or odd) parts, of course, but theta
is the same. Dig out from Sloane the sequences for
the number of self-avoiding walks, in the plane, for
the so-called triangular lattice, and for the so-called
hexagonal (honey-comb) lattice, and see whether you get
the same theta. Do you have to do the separation also here?
Perhaps you need to do it mod 3? Experiment!
-
The μ for the hexagonal lattice is conjectured by
physicists to be sqrt(2+sqrt(2)). Check whether this is
reasonable.
-
Find the μ and θ for the number of self-avoiding walks
in three dimensions, using Zinn and using FMCt(L) (compare notes).
-
Let F(n,a,b,S) be the number of self-avoiding walks from the origin [0,0]
to the point [a,b] never visiting the members of the set of point S.
We are primarily interested in F(n,a,b,{}) but need the extra
parameter S to facilitace an induction.
Write a program with option remember to compute
F(n,a,b,S).
(Hint F(n,a,b,S)=F(n-1,a-1,b,S union {[a,b]})+F(n-1,a+1,b,S union {[a,b]})+F(n-1,a,b-1,S union {[a,b]})+F(n-1,a,b+1,S union {[a,b]}) ),
also set up the initial condition and boundary conditions:
if abs(a)+abs(b)>n then it is 0, if member([a,b],S) then it is 0, and if member([0,0],S) then it is 0.
)
Express s(n), the total number of self-avoiding walks in the square lattice in terms of F(n,a,b,{}), and write a program
to compute s(n). Compare it with nops(SAW(n)); What takes longer to compute?
Programs done on March 2.,2009 (Virtual Class, Self-Study!)
Today, March 2, 2009, is a snow day, but I expect you to study on your own. Please read
and understand carefully the new programs in the file
Mar2.txt,
that contains the following procedures
-
sRSAW(n,K,C) : "smart Random Self-Avoiding-Walk",
an n-step random self-avoiding-walk on the square lattice,
with the extra feature that if its gets stuck, it backtracks K steps back
and tries again, up to C trials. If it fails, it returns FAIL
-
FabSn(a,b,S,n): the number of self-avoiding-walks from the origin to point [a,b] with n steps
avioding in addition the points in the set S. For example, try:
FabSn(1,1,{[1,0]},4); (that was a homework assignment last time, so you may already have a better version)
-
snab(n,a,b): the number of self-avoiding walks in the 2D square-lattice with n steps from the origin to [a,b]
(ditto)
-
sn(n):the number of self-avoiding walks in the 2D square-lattice with n steps
(without actually constuctiong the set of walks, but still exponential-time)
(ditto)
Homework for Mon. March 2, 2009, class (due March 5, 2009)
-
It is conjectured that the expected distance-squared from the beginning (the origin), of a self-avoiding walk of length n, in the
2D square-lattice grows like Cn2 ν,
where ν is one of the famous critical exponents, and C is some constant. Using the
enhanced random-saw-generator sRSAW(n,K,C), with, say, K=5, C=2000 (or whatever you find often does not FAIL),
write a program AvD(n,K,C,M) that runs sRSAW(n,K,C) M times (M failry big, say, at least a few hundreds),
and takes the average of the distance-squared of the last-visited-point of all of them (that didn't FAIL).
Do it for many n's (say 50 ≤ n ≤ 100).
Try to estimate
ν empirically. (Warning: sRSAW(n,K,C) is not guaranteed to generate a saw uniformly-at-random, so your
answer may disagree with the one conjectured by physicists, but let's hope for the best.
-
Modify sn(n) (and its subroutine snab(n,a,b), and its subsubroutine FabSn(a,b,S,n), to write procedures
snR(n,c,d) (and subroutine snabR(n,a,b,c,d), and subsubroutine FabSnR(a,b,S,n,c,d), that counts
the number of n-step self-avoiding walks on the 2D square-lattice, confined to the horizontal strip
c ≤ y ≤ d, for any integers c and d satisfying c ≤ 0 ≤ d.
-
Test your program by typing
[seq(snR(n,0,1),n=0..14)];
and look it up in Sloane. Who is the famous mathematician who scooped you?
-
Load into a Maple session the Salvy/Zimmermann Maple package gfun,
by typing
with(gfun):
and use guessgf to guess a generating function
for the above mentioned sequence.
-
Try to look-up in Sloane
[seq(snR(n,c,d),n=0..9)];
for various other c ≤ 0 ≤ d. Are they there yet?
Programs and Papers discussed on March 5,2009 (Guest Lecturer:
Prof. Ilias Kotsireas)
Homework for Mon. March 2, 2009, class (due March 5, 2009)
-
Experiment with several other cubic (and quadratic!) and even
quartic polynomials, and get beautiful color pictures.
-
Write a program F(m) to generate the combinatorial fractal
discussed in the
paper, using the following steps
- Write a procedure V(m) that inputs a pos. integer m and
outputs the list of lenght 2m listing all
vectors lf length m with 0-1 entries. For example, V(2) should be
[[0,0],[0,1],[1,0],[1,1]].
- Write a procedure CPN(v1,v2) that inputs two 0-1 vectors of
the same length and outputs 4 minus the
number of different column vectors
[v1[i],v2[i]] that show up. For example, CPN([1,0,1],[1,1,1]);
should give 2.
- Write a program M(m) that inputs a pos. integer m, and outputs
the 2m by 2m both of whose rows and
columns are indexed by 0-1 vectors of length m, such that
the [i,j] entry is CPN(V(m)[i],V(m)[j]).
- Draw the picture, with plots, by letting each entry be a
small square (pixel), coloring-coding the matrix. You can choose
the colors (e.g. RGB and Yellow)
-
Implement the homotopy method for solving the cubic in Dr. Kotsireas'
writeup.
Programs done on Mon. Mar. 9, 2009
-
Mar9.txt,
contains (in addition to previous procedures) the procedure
gSAW(n,a,b,c,d,PAT)
that inputs
- n: a non-neg. integer
- a,b,c,d: extebded integers (-infinity and infinity are allowed) such that a < b , c < d ,
- PAT: a set of "patterns", i.e. words in the alphabet {-1,1,-2,2}
and outputs the set of self-avoiding walks that are confined to the (possibly infinite)
rectangle {a ≤ x ≤ b , c ≤ y ≤ d } and that never contain any of the patterns in PAT
as (consecutive) subwords.
Homework for Mon. March 9, 2009, class (due March 12, 2009)
-
Experiment with gSAW(n,a,b,c,d,PAT) for various a,b,c,d, PAT. Find out if any of them are
in Sloane. If they are long enough apply Zinn from GuessHolo2, and estimate μ and θ .
Also try guessgf from gfun.
-
Another interesting set of combinatorial objects, reminisicent of self-avoiding walks, are
cube-free words on two letters, and square-free words on three letters.
A word in a given alphabet contains a square if it has a stutter, i.e.
a sequence of letters followed by an exact replica. For example:
neither "stutter" nor "iloveloveyou" are squre-free, but "doron" is.
Write a procedure SqFr(n) that inputs a pos. integer n and outputs the set
of words (lists) of length n in the alphabet {0,1,2} that are square-free.
Look up [seq(nops(SqFr(n)),n=1..10)] in Sloane.
(Hint: first write a procedure called IsBad(w) that tests whether it has a "square" at the end,
then build the sets recursively).
-
Do the analogous thing for cube-free words on two letters {0,1}.
Programs done on Thur. Mar. 12, 2009
-
Mar12.txt,
contains
-
LC(p): a loaded coin outputs 1 with prob. p and 0 with prob. 1-p
(p must be a rational number)
-
Rect(M,N): All the edges of the rectangle [0,M]x[0,N] in the 2D square-lattice
-
RP(M,N,p): a random subgraph of Rect(M,N) where each edge has independent
prob. p of showing up (the current file contains the much improved code
written by Dennis Hou)
-
Neig(G,v): The neighbors of vertex v in the graph G
-
CC(G,v): The connected component of vertex v in the graph G
Homework for Thur. March 12, 2009, class (due March 23, 2009)
-
Write a procedure IsGood(G,M,N) that inputs a graph (given as a set of edges) and returns
true if and only if the connected component containing the vertex [0,0] has at least
one vertex of the form [M,j] for some j.
-
Write a procedure, MC(M,N,p,K), that generates K random subgraphs of [0,M]x[0,N] (using RP(M,N,p))
and counts the ratio of good ones.
-
By taking K fairly big, experiment with p=1/10,2/10, ..., 9/10, and try to estimate the prob.
θ(M,N,p) of a random graph being good (percolating)
-
What we did so far, was bond percolation. Write analogous programs for site percolation
where you choose to include, or exclude any vertex.
-
Have a good Spring Break!
Added March 18, 2009: Pick a final project.
Programs done on Mon. Mar. 23, 2009
-
Mar23.txt,
contains the following procedures
-
LD(p,x): inputs a polynomial p in x, normalizes it
to be a prob. dist. g.f., and outputs an outcome
i with prob. coeff(p,x,i) (after it is normalized)
-
OneGame(a,b,p,x): Plays ONE game of SCM Backgammon
where the first player is distance a and the second
player is distance b from their end. The output
is the list of positions encountered, followed by
who won (1 or 2)
-
MC(a,b,p,x,K): performs OneGame(a,b,p,x) K times, and computes
the ratio of times Player 1 won.
-
F(a,b,p,x): The exact probability of 1 winning
if player 1 is distance a, and player 2 is distance b,
where the die has distribution p(x).
Homework for Mon. March 23, 2009, class (due March 26, 2009)
-
Modify MC(a,b,p,x,K) to write a program EL(a,b,p,x,K)
that empirically estimates the expected duration of
-
Modify F(a,b,p,x) to write a program EL(a,b,p,x,K)
that computes EXACTLY the expected duration of such a game.
-
Using Zinn and Findrec of
GuessHolo2,
study the sequence 1/2-F(i,i,p,x), for p=x+x2,
for p=x+x2+ ...+ x6, and for the
two-dice Backgammon, with the Backgammon convention.
-
(5 dollars to first solver): Using Maple, or even by hand,
find a closed-form formula for the generating function
sum(sum(F(a,b,p,x)*X^a*Y^b,a=0..infinity),b=0..infinity)
where p=(x+x2)/2. Can you generalize it for for general dice?
Check your answers against F(a,b,p,x).
Programs done on Mon. Mar. 26, 2009
-
Mar26.txt,
contains the following procedures (in addition to those from Mar23.txt listed in
HelpOld();)
-
N(a,b): the probabilty of the Next Player winning
in a stupid game were you toss a fair coin
if it is Head you move 1 unit towards the end
if it is Tail you move 2 units towards the end
The Next player is a units away and the Previous players is b units away from the end.
-
P(a,b): N(b,a) (just for convenience)
-
n(x,y,K): the truncted generating function of N(a,b) up to degree K (to approximate the full generating function)
-
p(x,y,K): the truncted generating function of P(a,b) up to degree K
-
FindGF(x,y):Finds the generating function A(x,y)=Sum(Sum(N(a,b)*x^a*y^b,a=0..infinity),b=0..infinity)
(using algebra) [in class we did it in the Maple session, here it is for posterity]
-
CheckGF(K): checks the Generating function FindGF(x,y) given by FindGF up to order K
Homework for Thurs. March 26, 2009, class (due March 30, 2009)
-
Explain why this system gives the generating functions for N(a,b) and P(a,b)
Eq:={N+(x+x^2)/2*P-1/(1-x)/(1-y)+x+x^2/2, P+(1/2)*(y+y^2)*N-1/(1-x)/(1-y)+1+y/2};
-
Generalize FindGF(x,y) to write a procedure FindGFg(x,y,p,x) that automatically
computes the generating function for the probabibilty of winning if it is your
turn to move and you are a units away and your opponent is b units away and the
prob. dist. of the die is given by the polynomial p of x.
FindGFg(x,y,(x+x^2),x); should be the same as FindGF(x,y);
-
Consider a Solitaire game, and let E1(a) be the expected number of moves until
you get to the negative region, with an arbitrary die p(x). Write
a Monte Carlo program that estimates the number of needed moves.
-
As above, but a program that computes the EXAXT expectation
-
Write a procedure FindGFE(x,p,x) that outputs the exact generating function (as a rational function of x)
f(x):=Sum(E1(a)*x^a,a=0..infinity)
Programs done on Mon., Mar. 30, 2009
-
Mar30.txt,
contains the following procedures:
-
LD(p,x): Loaded Die with prob. g.f. p(x)
-
GenM(A,B,p): A random A by B matrix (given as a list of lists) with Pr(1)=p (independently)
-
RO(M): The indices i such that M[nops(M)][i]=1 and there is an upwards-sideway paths of 1's
from at least one one in M[1]
-
MC(A,B,K,p): Performing Monte-Carlo K times with GenM(A,B,p) and counting the ratio of those
that percolate (there is an upwards-sidewises paths of 1's from the bottom to the top.
-
IsGood(M): returns true iff RO(M) non-empty.
-
Wt(M,p): the probability of the matrix M
Homework for Monday, March 30, 2009, class (due April 2, 2009)
-
Michael Ratner pointed out correctly that our definition of "IsGood" (percolating)
does not correspond to the usual one, that only requires that there is any
paths of 1's from the bottom to the top. Modify IsGood(M) to write a procedure
IsOK(M) that returns true iff there is a paths os such 1's.
(Hint: you can definte a procedure "NeighborOf" and iterate it).
-
Write MCok(A,B,K,p) the analog of MC(A,B,K,p) for the more lenient definition of percolating.
- Write a procedure Histogram(A,B,K,r) that runs MC(A,B,K,p) for
(K fairly big) and p=i/r where r is fairly big, for i=0...r, and outputs
a histogram (discrete plot) where the height above p=i/r is MC(A,B,K,p).
Experiment with various A,B, and r's .
- Write a procedure HistogramOK(A,B,K,r) that runs MCok(A,B,K,p) for
(K fairly big) and p=i/r where r is fairly big, for i=0...r, and outputs
a histogram (discrete plot) where the height above p=i/r is MC(A,B,K,p).
Experiment with various A,B, and r's .
-
Write a procedure TotalProb(A,B,p) that for (rather small A and B) finds the EXACT probability,
expressed as a polynomial in p of a matrix being good.
-
Write a procedure TotalProbOK(A,B,p) that for (rather small A and B) finds the EXACT probability,
expressed as a polynomial in p of a matrix being OK.
Plot it for various A and B's (not too big!)
Programs done on Thurs. April 2, 2009
-
Apr2.txt,
contains, in addition to the previous procedures, already contained in
Mar30.txt, the following procedures:
-
IsGoodState(M): inputs a 0-1 matrix given as a list of lists, and ouputs
true iff it is percolating matrix (there is a path of 1's from the bottom row
to the top down, that goes upwards and sideways)
-
PerP(M,N,p):Inputs integers M and N and a symbolic or numerical probabiblity p
and outputs the exact probabibility for percolating (in the simplfied model)
-
States(M): All the legal sates that a row can have in a percolating matrix
(n our simplified model) where 0 is unoccupied, 1 is an unreachable 1, and
2 is a reachable 1.
Homework for Thurs.,April 2, 2009, class (due April 6, 2009)
-
Rederive empirically (using Pade in the numapprox package) the exact expression for
sum(nops(States(i))*x^i,i=1..infinity)
-
Prove it rigorously, using computer and/or human ingenuity.
[Added April 13, 2009: Congratulations to Dennis Hou for finding
a beautiful human/computer
proof.]
-
Write a procedure IsComp(v1,v2) that outputs two states v1 and v2 (of the same length),
i.e. vectors of {0,1,2} with the property that no 1 can be next to a 2, and outputs
true if and only it is possible that v2 lies under v1 in a percolating matrix.
-
Verify empirically Eqs. (2) (3) and (4) in Herb Wilf's paper "On the zeros of the Riesz' function in
the Analytic Theory of Numbers
Programs done on Monday April 6, 2009
-
Apr6.txt,
contains, in addition to the previous procedures, already contained in
Apr2.txt, the following procedures:
-
IsComp(v1,v2): Can state v2 ve right on top of state v1?
-
BT1(v) : the first block of 2's in vector v
-
BT(v) : the list of [i,j] such that v[i]=...=v[j]=2
-
PerPf(M,N,p): a fast version of PerP(M,N,p)
-
PerPf1(M,N,p,s): the weight-enumetor of M by N matrices
whose top row has state s
-
BottomStates(M): all the bottom states of size M
Homework for Mon.,April 6, 2009, class (due April 13, 2009)
-
Write a program GFP(N,p,z) that inputs a pos. integer N and a varible
z, and outputs the rational function
Sum(PerPf(M,N,p)*z^M,M=1..infinity)
(Hint: first write GPF1(M,s,z), for computing the generating funcions
Sum(PerPf1(M,N,p,s)*z^M,M=1..infinity)
for all states s in States(N) ( you need to set a system of
linear equations mimicking PerPf1, but computing them all at once,
since they need each other).
-
Plot PerPf1(N,N,p) for N=2,3,4,... as far as your computer permits
-
(10 dollars): Solve with Maple (if possible), American Mathematical
Monthly Problem Number 11426 (April 2009, p. 365) to find
(GAMMA(1/14)*GAMMA(9/14)*GAMMA(11/14))/
(GAMMA(3/14)*GAMMA(5/14)*GAMMA(13/14))
[Added April 13, 2009: Congratulations to Dennis Hou for winning the
prize (and finding a Maple bug!). Read
Dennis Hou's brilliant solution.]
The class on Thur. April 9, 2009 (Guest Lecturer: Andrew Baxter)
Many thanks to Andrew Baxter for subbing on Passover!
Homework for Thurs.,April 9, 2009, class (due April 13, 2009)
-
Try plotting each of the 5 equations/functions listed at the bottom of the page at http://math.rutgers.edu/~baxter/StudySheets/Graphs.html
- Try to complete one of the Maple labs listed at http://math.rutgers.edu/~baxter/251-S08/index.html#Labs (check the gray boxes). Use any listed data you want, or make up your own.
Programs done on Monday April 13, 2009
We used some of the ideas in
Persi Diaconis' fascinating paper .
-
Apr13.txt,
contains the following prorams implementing the Metropolis algorithm
-
Jump(i,L):
Inputs a list L of size n, say, of relative importance
(prob.) performs one step in the Metropolis-Hastings algorithm
(it picks any other index,j, uniformly, if it is more important
it definitely goes there, if it is less, then it goes there
with prob. L[j]/L[i]
-
MH(i,L,K): the Markov Chain of length K starting at i
follwing Jump(i,L) K times, outputs the whole chain.
-
RealAve(L,i,ex1): the weighted
average of ex1(i) (ex1 is a symbolic function of index i)
according to the weight Pr(i)=L[i]/convert(L,`+`)
-
MHAve(L,i,ex1): an appx. to the weighted average, according to L
of ex1(j) (where ex1 is an expression in the symbol i)
you run the MH algorithm B1 times for fun, and start
averaging until E1
Homework for Mon., April 13, 2009, class (due April 16, 2009)
-
Using the
list of English words (given as lists in lower-case letters)
construct the 27 by 27 matrix whose rows and columns are
indexed by the 26 letters in the Latin alphabet, as well as the
space character, construct the matrix M (given as a list of lists)
such that M[x][y] is the frequency of letter x followed by letter y
in the list English. (Every letter x at the beginning of a word
contibutes to M[Space,x] and every letter x at the end of a word contibutes
to M[x,Space], while x followed y in a word contibutes to M[x,y].
-
Write a program that inputs a text in English (in the 27-letter alphabet,
ignoring punctuation and capitalization), viewed as one long word
w=[w1,w2, ...]
and a permutation, pi, of 27 lettters,
and outputs its encrypted version [pi[w1],pi[w2], ...]
-
(Challenge) Using the Metropolis algorithm as described in
Persi Diaconis' fascinating article, write a program that
decrypts a message encrypted by a simple substitution method.
Experiment with "Mary had a little lamb
her fleece was white as snow" and other sentences of your choice,
by first encrypting them with a random permutation, and then decrypting
them with Metropolis.
Programs done on Thurs., April 16, 2009
-
Apr16.txt,
Exact answers for the Ising Model. Contains the following procedures:
-
En(A): the "energy" of the {-1,1} matrix A (sum of products of
nearest neighbors horizontally and vertically)
-
PF(m,n,z): the exact "partition" function of the m by n Ising
model (without Magnetic field):
-
gPF(m,n,z,w): the exact "partition" function of the m by n Ising
model (with Magnetic field):
-
RealAve1(m,n,z,w,p,q): the (weighted average) of A[p][q]
amongsts all m by n matrices with the "Gibbs weight"
zEn(A)wSumOfEntries
-
RealAve2(m,n,z,w,p1,q1,p2,q2): the (weighted average) of
A[p1][q1]*A[p2][q2]
amongsts all m by n matrices with the "Gibbs weight"
zEn(A) wSumOfEntries
-
Cor(m,n,z,w,p1,q1,p2,q2) : the correlation of the random variables
A[p1][q1] and A[p2][q2]
Homework for Thurs., April 16, 2009, class (due April 20, 2009)
-
[Same as the challenge last time, but now it is a contest. $10 for the fastest
program that would decipher a random encrypted message]
Using the Metropolis algorithm as described in
Persi Diaconis' fascinating article, write a program that
decrypts a message encrypted by a simple substitution method.
Experiment with "Mary had a little lamb
her fleece was white as snow" and other sentences of your choice,
by first encrypting them with a random permutation, and then decrypting
them with Metropolis.
Use the 27 by 27 matrix of the relative frequency of
consecutive-letter-pairs (use S for space),
(that you were supposed to find last time),
where the neighbor of a permutation is
all its 27*26/2 permutations obtained by transposing two entries )
with the "importance weight" of a permutation pi being
(w is the encrypted word that you have to decrypt)
mul(M[pi[w[i]]][pi[w[i+1]]],i=1..nops(w)-1):
[Note added April 20, 2009: It turns out that
the table is not faithful to real life. Here is
Kellen Myers' better table.
The contest is postponed to the last day of classes, May 4, 2009]
[Note Added April 21, 2009: Here is
Liang Diao's better table.
-
Use the Metropolis algorithm to write a procedure
RM(m,n,z,w,K) that inputs pos. integers m and n,
pos. real numbers z and w, and a large pos. integer K,
and outputs a "typical" {-1,1} m by n matrix with the
parameters z and w, obtained by starting with a random
m by n {-1,1} matrix, and applies the Jump K times.
-
Write a program PlotM(M) that inputs a {-1,1} matrix and outputs
a picture of M where -1 is a white square and 1 is a black square.
-
Write a procedure
MHCor(m,n,z,w,p1,q1,p2,q2) to empirically estimates
the correlation of the random variables
A[p1][q1] and A[p2][q2] (what Cor(m,n,z,w,p1,q1,p2,q2) does)
but that will work for large m and n. Test it also for small
values of m and n against the exact results of
Cor(m,n,z,w,p1,q1,p2,q2) for various numerical choices of z and w.
Programs done on Mon., April 20, 2009
-
Apr20.txt,
A continuation of
Apr16.txt,
contains, in addition to the previous procedures:
-
Wt(A,z,w): the Ising weight (in terms of parameters z and w)
of the matrix A of {-1,1}
-
GenM(m,n,z,w,K): Uses the Metropolis algorithm K times to generate
a "typical" Ising m by n matrix with the parameters z and w.
-
Apr20a.txt,
the one-dimensional Ising model
-
Ising1(z,w,t): inputs symbols z,w,t, and outputs the generating function,
in t, of the "partition function" for 1 by n matrices,i.e.
the rational function in t,z,w, such that if you Taylor-expand about
t=0, the coefficient of tn is the weight-enumerators of
1 by n matrices.
Homework for Mon., April 20, 2009, class (due April 23, 2009)
-
Write a procedure that inputs a matrix A and decides whether it is
"ordered" or not (it is ordered if the number of sign-changes is small).
By using GenM(20,20,z,1,3000), try to find, empirically, the
"critical point" in z, where it passes from disordered to ordered.
-
Write a a procedure RN(A) that inputs a matrix A[i][j] of dimensions
m by n, say (both divisible by 3) and outputs an m/3 by n/3 matrix
such that B[i,j] is the "majority vote" of the nine entries
{A[3*i+a,3*j+b], a=0,1,2, b=0,1,2}.
-
Write a procedure RNG(k,z,w) that inputs k, uses
GenM(3k,3k,z,w,3000) to generate
a typical Ising matrix with parameters z,w and applies
RN(A) k-1 times. Call (z,w) good if you get the all 1 or
all -1 3 by 3 matrix, and call it bad, if you don't.
Empirically, find the "phase transition" z=f(w), for any given w
(from w=1 to w=3 with intervals of .1) where it moves from good to bad
(or vice-versa).
-
Write the analog of Ising1(z,w,t) for 2 by n matrices,
getting a certain rational function in z,w,t.
Programs done on Thurs., April 23, 2009
-
Apr23.txt,
The solution for an m by n Ising matrix, m numeric, n sybolic.
[Added April 27, 2009: this has corrections suggested by Brian
Nakamura. It replaces the
old erroneous version]
Contains the following procedures:
-
Vecs(m): the set of vectors in {-1,1} of lenght m
-
WtV(v,z,w): the vertical weight of the column vector v
-
WtH(v1,v2,z): the horizontal weight between two adjacent vectors v1 and v2
-
Isingm(z,w,t,m): the rational function in z,w,t, such that
the coeff. of tn in its Taylor expansion equals
the weight-enumerator of m by n matrices, with the Ising weight.
-
OnsagerN(m,nu): The Onsager explicit solution for m by inifity case.
-
LarsN(m,nu): getting the OnsagerN(m,z) solution via our approach.
Homework for Thurs., April 23, 2009, class (due April 27, 2009)
-
[$10] Fix OnsagerN(m,nu) and/or LarsN(m,nu) so that they would
give the same outputs for the same inputs.
[Added April 27, 2009: Brian Nakamura fixed it, and won the
prize, see below]
-
Adapt Isingm(z,w,t,m) so that we are talking about a cylinder
-
Adapt Ising(z,w,t,m) so that we are talking about a torus.
[Hint: you can either use the present approach with beginning
and ending column, or set-up an 2m by
2m matrix and find its eigenvalues.
Programs done on Mon., April 27, 2009
Brian Nakamura corrected OnsagerN (cylindrical convention),
here is the
the corrected version of Apr23.txt.
It was a nice day, so we used the 14 computers between our shoulders,
as well as some input/output device called paper-and-pencil (or pen).
We discussed how to write a webbook "120 KenKen puzzles", using
team effort. The challenge is to have such a webbook ready
to be posted in my homepage by Monday, May 4, 2009 (the last day
of classes).
The project leader is Andrew Baxter,
in charge of putting everything together, and the html part.
He has to boss three team leaders
- Emilie Hogan, in charge of solving KenKen puzzles.
Emilie is the boss of the team-members
-
Jeff Amos
-
Bobby DeMarco
-
Dan Staley
- Paul Raff, in charge of plotting the puzzles (and solutions).
Paul is the boss of the team-members
- Eric Rowland, in charge of desiging the puzzles.
Eric is the boss of the team-members
-
Kellen Myers
-
Brian Nakamura
-
Michael Ratner
Additional Homework for Mon., April 27, 2009, class (due April 30, 2009)
In addition to the class-project, please do the following
-
Try to empirically guess the phase-transition in what we call ν
by defining a function f[N](nu)=log(OnsagerN(N,nu))/N, and
plotting f[N] for large N (say N=40 and N=100)
for ν between 0 and 1 (using plot).
Can you guess
the location of the phase-transition (hint: it should
for large N tend to log(1+sqrt(2))/2=0.44068... (the root of sinh(2 ν)=1,
see Eq. (5.12))
-
Extend LarsN(m,nu) to LarsNg(m,nu,w) that takes w different than 1.
By defining a function g[N](nu,w)=log(LarsN(N,nu,w))/N,
plot it for N=4 or N=5 and for various w, and try to see how
the location of the "phase transition" (where it starts shooting up)
depenes on w.
Programs done on Thu., April 30, 2009
Andrew Baxter kindly supplied the following
Onsager plot
clearly showing the phase transition at ν=log(1+sqrt(2))/2=0.4406867934... .
-
Apr30.txt, finishing Apr23.txt. The new procedures are:
-
PlotON(m): Plots the Onsager function for m by infinity strip
-
PlotO(): plots the Onsager function for the plane.
-
Onsager(ν): the Onasager function at ν
-
LarsNg(m,w,nu): The Onsager function with non-zero magnetic field at nu and
w=exp(β H)
-
Apr30a.txt, directed animals. (Note: NuT(n) has been corrected by Brian Nakamura)
Contains procedures
-
IsComp(v1,v2): can o-1 vector v2 be on top of 0-1 vector v1
-
BV(k): the set of 0-1 vectors of size k
-
NuT1(n,v): the number of directed animals with n ones whose bottom row is v
-
NuT(n): the total number of directed animals with n ones.
Homework for Thur. April 30, 2009, class (due May 4, 2009)
-
Define a generalized directed animal with base k to be a trapezoid of 0's and 1's
with the same rule as a directed animal, but with the top row consisting of
all k ones (and no zeros!) . Write a program
NuTk(n,k): that counts the number of such creatures with n ones.
Example:
1 1 1 1 1 1
1 0 1 1 1 0 1 0 0
are directed animals with base 2, and
1 1
1 0 0
1 1 1 0
would have been, but is not, since the third 1 at the bottom row has both its parents 0.
1 1 1
1 0 1 1
0 1 1 0 1
is a directed animal with base 3, etc.
-
Write a program NuTall(n) that finds the total number of generalized animals
in other words:
NuTall:=proc(n): add(NuTk(n,k),k=1..n): end:
Conjecture an explicit solution to NuTall(n) as an expression in n.
[Added May 4, 2009: the answer is 3n-1 ].
-
($50 if you don't peek at the literature): prove your conjecture.
What we did on Monday, May 4, 2009
Today was the last day of classes, and we started with
a deciphering competition. The students were supposed to use
their Metropolis-based (simple substitution encryption) decription
to decipher the following
coded message. The winner was
Kellen Myers. See his
program (coming up soon, right now the link does not exist).
Kellen won the book "Graph Theory" by Robin Wilson.
The second winner was Liyang Diao, who only finished a few seconds later.
The answer was the first paragraph of this webpage.
Liyang won a granola bar.
The second contest was to do as many Amer. Math. Montly problems,
from the March, April, and May, 2009 issues,
(that were handed out)
using Maple, as possible, in the remaining 70 minutes. The
winner was
Eric Rowland who solved (and corrected!) Amer. Math. Monthly
problem 11435. Eric won the book "A Walk through combinatorics"
by Miklos Bona.
Many other students came close to solving several other problems.
They are welcome to finish them up at home.
Homework for May 4, 2009, class
This was the last day of classes. Don't forget to Email me
(at least a preliminary version of) your final project.
Have a great summer!
Look at the students' Final Projects
Note: these will be hopefully expanded and upgraded through the summer and beyond.
Added May 19, 2009: Look at the awsome collective class project
Dr.Z.'s ExpMath Class's Calcudoku WebBook
Dr. Z.'s teaching page