SOLUTION: An SF path starts at S, follows along the edges of the squares, never visits any vertex more than once, and finishes at F. An example of an SF path is shown. (A vertex is a poin

Algebra.Com
Question 1178620: An SF path starts at S, follows along the edges of the
squares, never visits any vertex more than once, and finishes
at F. An example of an SF path is shown. (A vertex is a
point where two or more of the squares’ edges meet.)
This is the question (I took a screenshot):
https://drive.google.com/file/d/1PBiwLlK971wMDwIjFABNOb3QhBzEJhNs/view?usp=sharing

Answer by greenestamps(13200)   (Show Source): You can put this solution on YOUR website!


Consider the "center" of the array of squares, as shown here:
             f -------- g -------- X
             |          |          |
             |          |          |
             |          |          |
             |          |          |
  X -------- c -------- d -------- e
  |          |          |
  |          |          |
  |          |          |
  |          |          |
  X -------- a -------- b

  vertex     # of paths to that vertex
  ----------------------------------------
    a       C(19,0) = 1
    b       C(20,0) = 1
    c       C(19,1) = 19
    d       = b+c = 1+19 = 20
    e       = d = 20
    f       = c = 19
    g       = d+f = 39

Any SF path passes through exactly one of vertices e and g.

# paths g to F: C(19,0) = 1
# paths e to F: C(18,1) = 18

# paths S to F: 39*1 (through g) plus 20*18 (through e) = 39+360 = 399


ANSWER: 399 SF paths


RELATED QUESTIONS

An Eulerian Path is a graph traversal that starts at some vertex and traverses every edge (answered by CPhill)
Chris starts his run at 7:00 a.m. He runs at a rate of 4 miles per hour. His course takes (answered by texttutoring)
A regular octahedron is made up of eight equilateral triangles, each with side length one (answered by ikleyn,greenestamps)
Find the number of paths from A to B in the grid below, so that * Each step is down or... (answered by CPhill,greenestamps)
A bug starts at one vertex of a cube and moves along the edges of the cube according to... (answered by stanbon)
Is it B? I want to check my answers. Which of the following best describes a... (answered by jim_thompson5910)
Is it A? I want to check my answer. Which of the following best describes a... (answered by jim_thompson5910)
Consider the cube-pyramid structure described in yesterday's problem. Find a path the... (answered by richard1234)
An object moves along a straight path at a speed v(t) = 2+4t-t2 of m/s. When will the... (answered by ikleyn)