Over the weekend, you have a few errands to run. One of those errands is a trip to the store to buy a loaf of bread. The map of your town is represented in the map below:
If your home is represented by the blue house, and the store is represented by a red store, how many possible routes can you take to get from your house to the store?
Clarification: You can only move south or east.
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.
To solve this problem, you could split the amount of routes you could travel by their intersections. For example, at the points A, B, C, and D, you can label them as 1 because there is only one way to get to that intersection.
Afterwards, you can then label the intersections below as follows, as the numbers will represent the number of paths you can take to reach the intersection, you could take 6 different routes to reach an intersection labeled with a six:
After that, you can find the rest of the intersections by adding up all of the number above that particular intersection, and the one west of that intersection.
Therefore, we get 4 2 as our answer.