The streets of a city are in square grids. There are seven streets running north and south, and six streets running along east-west. Find the number of ways in which a person can travel from the north-west corner to the south-east corner through the shortest possible distance.
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.
Did you notice that ( 5 1 1 ) = 4 6 2 ? Coincidence?
The number of ways of going from a corner of to another in a square grid of m × n paths (streets) is given by ( reference ):
N = ( min ( m , n ) − 1 m + n − 2 )
For 7 × 6 paths, we have N = ( 6 − 1 7 + 6 − 2 ) = ( 5 1 1 ) = 4 6 2
Problem Loading...
Note Loading...
Set Loading...