How many ways can I go up some steps?

  • Thread starter Thread starter Paulo Serrano
  • Start date Start date
Click For Summary
SUMMARY

The discussion focuses on calculating the number of ways to ascend a staircase with 7 steps, considering the ability to move up one, two, or three steps at a time, except for the final step which can only be taken one at a time. The solution involves using Fibonacci numbers, specifically the recurrence relation f(n) = f(n-1) + f(n-2), to determine the total combinations. However, there is a misconception regarding the application of Fibonacci numbers for cases where three steps can be taken, as the problem's author incorrectly assumes that the sequence applies to this scenario.

PREREQUISITES
  • Understanding of Fibonacci numbers and their sequence
  • Knowledge of recurrence relations in mathematics
  • Basic combinatorial principles for counting arrangements
  • Familiarity with problem-solving techniques in discrete mathematics
NEXT STEPS
  • Study the properties and applications of Fibonacci numbers in combinatorial problems
  • Learn about recurrence relations and how to derive them for various scenarios
  • Explore combinatorial counting techniques for problems involving multiple step options
  • Investigate the relationship between Fibonacci numbers and other sequences, such as Lucas numbers
USEFUL FOR

Students in mathematics or engineering, educators teaching combinatorial mathematics, and anyone interested in solving discrete mathematics problems involving sequences and counting methods.

Paulo Serrano
Messages
52
Reaction score
0

Homework Statement


A person can go up one step at a time, skip a step at a time, or skip two steps at a time, with the exception of the final step, which obviously you can only go one step up.

a) Calculate the different ways someone can up up a staircase with 7 steps.
b) Calculate the number of steps in the staircase if the total number of ways I can go up it is N=987



Homework Equations



none

The Attempt at a Solution

 
Physics news on Phys.org
With only 7 steps, I think a case-wise solution may be quicker.
 
This was from the test to major in physics/engineering from Rio De Janeiro Federal University last year. The answer sheet says you have to use Fibonacci numbers. I have no idea what those are or how they work, so I'm going to read about them on wikipedia.

if someone can give me a summary of how it works, though, I'd appreciate it.
 
Fibonacci numbers are numbers form a sequence of numbers, the first 2 are
f(0) = 0 and f(1) = 1 and the rest is computed by f(n) = f(n-1) + f(n-2).
This is called a recurrence relation
The numbers you'll get are related with a similar relation.

If you want to go up a staircase of n steps with n at least 3, the first step could move up 1, 2 or 3 steps. The number of ways is the sum of the number of ways to climb the smaller steps that are left.

Unfortunately, question b makes me think that the author of this problem DOES think that the numbers are from the fibonacci sequence, which is wrong. It would be right if you could move only 1 or 2 steps up at a time.
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 11 ·
Replies
11
Views
3K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 16 ·
Replies
16
Views
2K
Replies
7
Views
4K