#Urgent Combinatorics help

28 messages · Page 1 of 1 (latest)

crimson star
#

An ant is at a vertex of a cube. Every 10 minutes it moves to an adjacent vertex along an
edge. If N is the number of one hour journeys that end at the starting vertex, find the sum
of the squares of the digits of N .

earnest mulchBOT
#
  1. Ask your question and show the work you've done so far. If you've posted a screenshot of a question, specify which part you need help with.
  2. Wait patiently for a helper to come along.
  3. Once someone helps you, say thank you and close the thread with:
    +close
    
  4. Feel free to nominate the person for helper of the week in #helper-nominations
  5. Do not ping the mods, unless someone is breaking the rules.
  6. If you're happy with the help you got here, and the server overall, you can contribute financially as well:
crimson star
#

My approach

#

I assumed that for any move that the ant is going AWAY from the blue dot ( its original spot ), it counts as +1. Any move that comes TOWARDS the dot, it counts as -1. all vertical moves count as 0.

#

So

#

All these blue arrows are +1's

#

reverse the symbol, they are -1's.

#

And

#

All red arrows are counted as 0's.

#

Thus by my computation we get cases where there are no 0's ( No vertical movement), 2 0's ( There can't be an odd amount since we can't get back. ) 4 0's and in the end all 0's ( just cycle about vertically )

crimson star
#

but I am 22 cases short

#

Plz help

grim rivet
#

the hard part is finding N

#

so why do you need the sum of the squares of the digits of N?

crimson star
grim rivet
#

i dont get it😅

#

oh wait its because N is a really big number?

#

that makes sense ig

wet tangle
#

this isn't cheating by any chance is it

crimson star
#

Its a previous year question

#

I can send u the paper

wet tangle
#

ah yes ok

#

so why is this "urgent"

#

anyway, here's how you can do it
divide the cube into groups: startingvertex, adjacent, adjacent, oppositevertex
the number of ways to arrive at these places after 0 moves is [1,0,0,0]
after 1 move, the number of ways is [0,3,0,0]
try generalizing this to allow you to find all 60 minute paths

crimson star