Pascal's n-Cube Triangle

Let us define an n n -cube as a closed, convex figure in an n n -dimensional space whose line segments are perpendicular to one another and are the same length. Some examples include a point ( 0 0 -cube), a line ( 1 1 -cube), a square ( 2 2 -cube), and a cube ( 3 3 -cube).

Now, a 0 0 -cube (point) has 1 1 point on its boundary; a 1 1 -cube (line) has 2 2 points and 1 1 line on its boundary; a 2 2 -cube (square) has 4 4 points, 4 4 lines, and 1 1 square on its boundary; and a 3 3 -cube (cube) has 8 8 points, 12 12 lines, 6 6 squares, and 1 1 cube on its boundary. These numbers can be placed in a Pascal-like triangle, where each number is the sum of the number above and to the left of it and twice the number above and to the right of it. (For example, the 6 6 in the fourth row is 4 + 2 1 4 + 2 \cdot 1 , because 4 4 is the number above and to the left of it and 1 1 is the number above and to the right of it.)

We can extend this triangle to predict the number of elements on the boundary of a 4 4 -cube (tesseract): 0 + 2 8 = 16 0 + 2 \cdot 8 = 16 points, 8 + 2 12 = 32 8 + 2 \cdot 12 = 32 edges, 12 + 2 6 = 24 12 + 2 \cdot 6 = 24 squares, 6 + 2 1 = 8 6 + 2 \cdot 1 = 8 cubes, and 1 + 2 0 = 1 1 + 2 \cdot 0 = 1 tessaract.

Find an explicit formula that can calculate any number in the triangle, and use it to find the exponent of the greatest power of 2 2 that evenly divides the total number of squares on the boundary of a 1000 1000 -cube.

Note : This problem does not require a programming solution.


The answer is 1000.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

David Vreken
May 16, 2018

The number of m m -cube elements on the boundary of an n n -cube is defined as f ( n , m ) = 2 n m ( n m ) f(n, m) = 2^{n-m} \binom{n}{m} (see inductive proof below). Therefore, the number of squares on the boundary of a 1000 1000 -cube would be when m = 2 m = 2 and n = 1000 n = 1000 , and would be defined as:

f ( 1000 , 2 ) f(1000, 2)

= 2 1000 2 ( 1000 2 ) = 2^{1000-2} \binom{1000}{2}

= 2 998 1000 ! ( 1000 2 ) ! 2 ! = 2^{998} \frac{1000!}{(1000 - 2)! \cdot 2!}

= 2 998 1000 ! 998 ! 2 ! = 2^{998} \frac{1000!}{998! \cdot 2!}

= 2 998 1000 999 2 = 2^{998} \frac{1000 \cdot 999}{2}

= 2 998 1 0 3 999 2 = 2^{998} \frac{10^3 \cdot 999}{2}

= 2 998 2 3 5 3 999 2 = 2^{998} \frac{2^3 \cdot 5^3 \cdot 999}{2}

= 2 998 + 3 1 5 3 999 = 2^{998 + 3 - 1} \cdot 5^3 \cdot 999

= 2 1000 5 3 999 = 2^{1000} \cdot 5^3 \cdot 999

Since 5 3 999 5^3 \cdot 999 is not divisible by 2 2 , the greatest power of 2 2 that evenly divides the total number of squares on the boundary of a 1000 1000 -cube is 2 1000 2^{1000} , and its exponent is 1000 \boxed{1000} .


Inductive Proof:

Assuming f ( n , m ) = 2 n m ( n m ) f(n, m) = 2^{n-m} \binom{n}{m} is true, it can be shown that f ( n + 1 , m ) = f ( n , m 1 ) + 2 f ( n , m ) = 2 n + 1 m ( n + 1 m ) f(n + 1, m) = f(n, m - 1) + 2f(n, m) = 2^{n+1-m} \binom{n+1}{m} as follows:

f ( n + 1 , m ) f(n + 1, m)

= f ( n , m 1 ) + 2 f ( n , m ) = f(n, m - 1) + 2f(n, m)

= 2 n ( m 1 ) ( n m 1 ) + 2 2 n m ( n m ) = 2^{n-(m - 1)} \binom{n}{m-1} + 2 \cdot 2^{n-m} \binom{n}{m}

= 2 n + 1 m n ! ( n ( m 1 ) ) ! ( m 1 ) ! + 2 n + 1 m n ! ( n m ) ! m ! = 2^{n+1-m} \frac{n!}{(n-(m-1))!(m-1)!} + 2^{n+1-m} \frac{n!}{(n-m)!m!}

= 2 n + 1 m [ n ! ( n + 1 m ) ! ( m 1 ) ! + n ! ( n m ) ! m ! ] = 2^{n+1-m}[\frac{n!}{(n+1-m)!(m-1)!} + \frac{n!}{(n-m)!m!}]

= 2 n + 1 m [ n ! m ( n + 1 m ) ! m ( m 1 ) ! + n ! ( n + 1 m ) ( n + 1 m ) ( n m ) ! m ! ] = 2^{n+1-m}[\frac{n!m}{(n+1-m)!m(m-1)!} + \frac{n!(n+1-m)}{(n+1-m)(n-m)!m!}]

= 2 n + 1 m [ n ! m ( n + 1 m ) ! m ! + n ! ( n + 1 m ) ( n + 1 m ) ! m ! ] = 2^{n+1-m}[\frac{n!m}{(n+1-m)!m!} + \frac{n!(n+1-m)}{(n+1-m)!m!}]

= 2 n + 1 m n ! ( m + n + 1 m ) ( n + 1 m ) ! m ! = 2^{n+1-m}\frac{n!(m + n + 1 - m)}{(n+1-m)!m!}

= 2 n + 1 m n ! ( n + 1 ) ( n + 1 m ) ! m ! = 2^{n+1-m}\frac{n!(n + 1)}{(n+1-m)!m!}

= 2 n + 1 m ( n + 1 ) ! ( n + 1 m ) ! m ! = 2^{n+1-m}\frac{(n + 1)!}{(n+1-m)!m!}

= 2 n + 1 m ( n + 1 m ) = 2^{n+1-m}\binom{n + 1}{m}

Therefore, by inductive proof the number of m m -cube elements on the boundary of an n n -cube is defined as f ( n , m ) = 2 n m ( n m ) f(n, m) = 2^{n-m} \binom{n}{m} .

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...