+0  
 
0
1843
1
avatar

How many different three-step paths along the edges of a cube are there that take you from vertex $A$ to vertex $B$? (A step is from a vertex to an adjacent vertex sharing an edge.) size(101); import three; currentprojection=orthographic(1/2,-1,1/4); draw((0,0,0)--(1,0,0)--(1,0,1)--(0,0,1)--(0,0,0)); draw((1,0,0)--(1,1,0)--(1,1,1)--(1,0,1)); draw((1,1,1)--(0,1,1)--(0,0,1)); label("A",(0,0,1),(-1,0,0)); label("B",(1,1,0),(1,0,0));

 Mar 14, 2015

Best Answer 

 #1
avatar+66 
+7

there are 6 such paths. You need to make one step in each of the three dimensions the cube has to come from A to B. There are 3 different possibilitys which dimension to go first, 2 for the second and only one for the last.

$$3\cdot2\cdot1=6$$

 Mar 15, 2015
 #1
avatar+66 
+7
Best Answer

there are 6 such paths. You need to make one step in each of the three dimensions the cube has to come from A to B. There are 3 different possibilitys which dimension to go first, 2 for the second and only one for the last.

$$3\cdot2\cdot1=6$$

Shaomada Mar 15, 2015

3 Online Users

avatar