OFFSET
1,1
COMMENTS
These types of matrices are used in Kernel inversion functions in scattering theory.
REFERENCES
Roger G. Newton, Scattering Theory of Waves and Particles, McGraw Hill, 1966; p. 254.
MATHEMATICA
(* SO(4) Determinant one 4 X 4 Markov Fredholm-like sequence *) (* page 254 Scattering Theory of Waves and Particles by Roger G. Newton 1966 McGraw Hill*) (* by Roger L. Bagula, Sep 09 2004 *) Clear[M, A, x] digits=8; M={{0, 1, -1, 1}, {-1, 0, 1, -1}, {1, -1, 0, 1}, {-1, 1, -1, 0}}; Det[M] A[n_]:=M.A[n-1]-Sum[A[n-1][[i, i]], {i, 1, 4}]*M/n; A[0]:={{0, 1, 1, 2}, {1, 1, 2, 3}, {1, 2, 3, 5}, {2, 3, 5, 8}}; (* flattened sequence of 4 X 4 matrices made with an SO(4) Determinant one Fredholm-like recurrence*) b=Flatten[Table[M.A[n], {n, 1, digits}]] Floor[Abs[b]] Dimensions[b][[1]] ListPlot[b, PlotJoined->True]
CROSSREFS
KEYWORD
nonn,uned
AUTHOR
Roger L. Bagula, Sep 09 2004
STATUS
approved