Imagine a square 2D grid of nodes of dimension n by n nodes.
Now imagine you can start at any node, and travel in any direction (up, down, left, right, or in any of the diagonal directions). Moving to an adjacent node constitutes '1 length'.
The rules are:
a. You can move diagonally.
b. You cannot backtrack
c. For a particular journey, you cannot travel over the same path, but you can cross it if necessary.
d. You can start and end the journey at any node, providing you have travelled the required journey length set by the game.
The journey length is called 't'.
How many possible different patterns are there as a function of t and n?
I have attached the image to explain.
Now imagine you can start at any node, and travel in any direction (up, down, left, right, or in any of the diagonal directions). Moving to an adjacent node constitutes '1 length'.
The rules are:
a. You can move diagonally.
b. You cannot backtrack
c. For a particular journey, you cannot travel over the same path, but you can cross it if necessary.
d. You can start and end the journey at any node, providing you have travelled the required journey length set by the game.
The journey length is called 't'.
How many possible different patterns are there as a function of t and n?
I have attached the image to explain.