What is the value of a[3,4}?
a : ( m , n ) → { n + 1 a ( m − 1 , 1 ) a ( m − 1 , a ( m , n − 1 ) ) m = 0 m > 0 ∧ n = 0 True
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.
Table is a Wolfram Mathematica function which evaluates the first argument for each cell of a table (matrix) in row major form (i.e., in this case i varies from 0 to 4 across each row and then j varies from 0 to 3 column-wise.
Problem Loading...
Note Loading...
Set Loading...
Table [ a ( i , j ) , { i , 0 , 3 } , { j , 0 , 4 } ] ⇒ ⎝ ⎜ ⎜ ⎛ 1 2 3 5 2 3 5 1 3 3 4 7 2 9 4 5 9 6 1 5 6 1 1 1 2 5 ⎠ ⎟ ⎟ ⎞
You really do not want to try to evaluate a(4,2) as that value is 2 6 5 5 3 6 − 3 .