{%- extends "base_math.xhtml" -%} {%- block title -%}Number Wall Visualiser{%- endblock -%} {%- block footer -%}{{ math_footer ("numberwall.xhtml") }}{%- endblock -%} {%- block style %} {% endblock -%} {%- block content %}

Number Wall Visualiser

Git repository: Link
Mathologer video: Invidious Youtube

9/11/2022
Overview

On August 27, 2022, a youtube mathematician called the Mathologer published an interesting video on the mathematical constructs known as number walls. In the description of that video he also published a coding challenge of creating an implementation of the number wall algorithm.

This is not an entry into that coding challenge. This is just a tribute.

For various reasons this didn't end up finished in the time period required, and in any case it is not an online implementation and so doesn't qualify. But this project still has some fun tools to play around with for anyone with an interest in math. Amongst other things, elaborate pictures of the fractal square patterns produced by large number walls can be made.

Number wall of the Pagoda sequence modulo 5
Number wall of the Pagoda sequence with cells equal to 0 mod 5 in orange and others in blue

It is strongly recommended that you watch the Mathologer's video for an explanation of what exactly a number wall is. If, for some reason, you don't want to do that or the video is inaccessible, then the rules of how to construct a number wall are detailed in the appendix.

Tools

There are three programs provided:

An example of using wallsolve to calculate the next number in the sequence of integer cubes:

> wallsolve -i 1,8,27,64,125,216,343,512,729,1000
S(n) = 4S(n-1) - 6S(n-2) + 4S(n-3) - S(n-4)
Next: 1331
>

An example of visualwall has already been given in the overview in the form of the picture of the Pagoda sequence number wall, and the output of wallgen is too verbose to show here.

Implementation Details

All calculations to produce the number walls in these programs are done using the simple construction rules in the appendix. No determinants were used, as that method would be more computationally intensive.

Since the methods of constructing a number wall given by the Mathologer assume a sequence that is infinite in both directions and any sequence used by these programs is finite, some compromises had to be made. In particular, visualwall uses a longer sequence to generate its number wall and then fits the largest square viewing area it can inside the resulting triangle of calculated values.

The polynomial library made for wallsolve assumes that coefficients will always be integers. This applies even to the division implementation, with only integer division being used and the remainder term becoming larger than it may otherwise be expected to be if rationals were permitted. As a number wall calculated from an integer sequence (or a sequence of polynomials with integer coefficients) will always have integer values, this isn't actually a problem. But care had to be taken in number wall construction so that division operations were always left until last.

The modulus values allowed by visualwall are not limited to prime numbers. If a composite modulus is selected then the highlighted portions of cells equal to zero modulo that number may not produce squares. The resulting pictures are, however, still interesting to examine.

At present visualwall only has the option to display either the Pagoda sequence or a sequence of random numbers, unless a comma separated value formatted sequence is supplied in an external file. It would not be hard for anyone with a passing knowledge of OCaml to add in different sequences, but at this stage there is no need.

Appendix: How to Construct a Number Wall

A number wall is a grid of numbers that extends infinitely left, right, and down. It begins with an infinite row of ones at the top, then below that a row containing the input sequence. All other cells are computed according to the following rules.

Pattern Relation Notes
  a  
b c d
  e  
a e + b d = c 2

or alternatively

e = c 2 - b d a

where a 0
This rule is used to calculate the vast majority of cells.
Pattern Relation Notes
    a    
    b    
c d   e f
    g    
    h    
b 2 h + a g 2 = d 2 f + c e 2

or alternatively

h = d 2 f + c e 2 - a g 2 b 2

where b 0
If cell a goes out of bounds of the wall, it is considered equal to zero.
Pattern Relation Notes
a b c d e f
g 0 0 0 0 h
i 0 0 0 0 j
k 0 0 0 0 l
m 0 0 0 0 n
o p q r s t
W X Y Z = S where

W is the common ratio of the arithmetic sequence a , b , c , d , e , f

X is the common ratio of the arithmetic sequence t , s , r , q , p , o

Y is the common ratio of the arithmetic sequence a , g , i , k , m , o

Z is the common ratio of the arithmetic sequence t , n , l , j , h , f

S is equal to 1 if the dimension of the zero square is even, or -1 if the dimension is odd
All cells surrounding a square of zeros are guaranteed to be nonzero.

This rule is applicable to squares of zeros of any finite size, but for the sake of simplicity the previous rule should be used for isolated zeros.

The cells that this rule should be targeted at calculating are those on the bottom row below the square of zeros. Reformulating the math to solve for those cells is left as an exercise to the reader.
Pattern Relation Notes
    a 1 a 2 a 3 a 4    
    b 1 b 2 b 3 b 4    
c 1 d 1 0 0 0 0 f 4 e 4
c 2 d 2 0 0 0 0 f 3 e 3
c 3 d 3 0 0 0 0 f 2 e 2
c 4 d 4 0 0 0 0 f 1 e 1
    h 4 h 3 h 2 h 1    
    g 4 g 3 g 2 g 1    
Y a n b n + s W c n d n = Z g n h n + s X e n f n

where

W , X , Y , Z are the common ratios of the arithmetic sequences along the sides of the square of zeros as in the Horseshoe Rule

s is equal to -1 if n is odd and 1 if n is even
As with the Horseshoe Rule, this rule is applicable to squares of zeros of any finite size.

The cells that this rule should be targeted at are those along the bottom denoted as g n but as with the previous rule, reformulating the math to solve for those cells is left as an exercise to the reader.

As with the Long Cross Rule, if any of the cells a n go out of bounds of the wall they are considered to be equal to zero. This can occur if there are non-isolated zeros in the input sequence.

An example of a number wall:

1 1 1 1 1 1 1
64 125 216 343 512 729 1000
721 1801 3781 7057 12097 19441 29701
2016 4140 7344 11844 17856 25596 35280
1296 1296 1296 1296 1296 1296 1296
0 0 0 0 0 0 0

The above excerpt was taken from the number wall generated by the sequence of integer cubes. In this case, the wall essentially ends in a row of all zeros as all subsequent rows below that will also be zeros. Note however that this does not always happen.

A property of number walls is that zeros will always be arranged in squares. A singular isolated zero is considered to be a 1x1 square and a wall ending in rows of zeros as above is considered to be the start of a square of zeros of infinite size. This property can be used to supplement the calculation rules.

{% endblock -%}