SOLUTION: Find the number of paths from A to B in the grid below, where each step is down or to the right. The grid is 3 by 3, with A in the upper-left and B in the lower-right.

Algebra.Com
Question 1210221: Find the number of paths from A to B in the grid below, where each step is down or to the right.

The grid is 3 by 3, with A in the upper-left and B in the lower-right.

Answer by CPhill(1959)   (Show Source): You can put this solution on YOUR website!
You're asking for the number of paths from the top-left corner (A) to the bottom-right corner (B) of a 3x3 grid, where each step is either down or to the right.
In a 3x3 grid, to get from A to B, you need to make a total of:
* 3 steps to the right (R)
* 3 steps down (D)
Any valid path will consist of a sequence of these 6 steps (3 R's and 3 D's). The problem then becomes finding the number of distinct arrangements of these 6 steps.
This is a combination problem. We have 6 total steps, and we need to choose 3 of them to be "right" steps (the remaining will be "down" steps). The number of ways to do this is given by the binomial coefficient:
$$ \binom{n}{k} = \frac{n!}{k!(n-k)!} $$
Where:
* $n$ is the total number of steps (6)
* $k$ is the number of steps in one direction (either 3 right or 3 down)
Let's calculate this:
$$ \binom{6}{3} = \frac{6!}{3!(6-3)!} = \frac{6!}{3!3!} = \frac{6 \times 5 \times 4 \times 3 \times 2 \times 1}{(3 \times 2 \times 1) \times (3 \times 2 \times 1)} = \frac{720}{6 \times 6} = \frac{720}{36} = 20 $$
Therefore, there are **20** different paths from A to B in the 3x3 grid following the given rules.
**Answer:** There are **20** paths from A to B.

RELATED QUESTIONS

Find the number of paths from A to B in the grid below, so that * Each step is down or... (answered by CPhill,greenestamps)
The following 7 × 22 grid is divided into squares that are 1 unit by 1 unit. WebAssign... (answered by mananth,ikleyn,greenestamps)
Let A(2,1) and B(8,5) be the two points in the plane that are the nodes of a grid... (answered by greenestamps)
Please help! I need step by step help on solving this equation. There are three parts to... (answered by Alan3354,Edwin McCravy)
Pls help Find a linear inequality with the following solution set. Each grid line... (answered by MathLover1)
Help! Find a linear inequality with the following solution set. Each grid line... (answered by MathLover1)
Use a coordinate grid to plot ΔABC with vertices having coordinates A(2,6), B(18,2), (answered by CharlesG2)
Alex has a grid in the shape of a rectangle. He has right triangles. Each right triangle... (answered by josgarithmetic)
Find the number of ways of filling in the squares of a 3 \times 3 grid so that: * Each... (answered by CPhill)