Discover the Formula for Finding Trains of Any Length | Math Project Help"

  • Thread starter Thread starter heartless
  • Start date Start date
  • Tags Tags
    Algorithms
AI Thread Summary
The discussion revolves around finding a formula and algorithm for creating "trains" of rods that sum to a specific length. A proposed formula for the number of trains of length n is presented, but it is noted that it does not work for lengths 1, 2, and 3. Participants suggest simplifying the formula by identifying patterns in the values of h for various lengths. The concept of recursion is emphasized as a key approach for developing the algorithm, with hints provided on how to relate the number of ways to build an n-train to smaller trains. Overall, the focus is on refining the formula and creating a recursive algorithm for generating all possible trains.
heartless
Messages
220
Reaction score
2
Hello math crew!

Here's the problem: http://www2.edc.org/makingmath/mathprojects/trains/trains.asp

just in case somebody doesn't want to click on the above link,

trains:
You can use rods of integer sizes to build "trains" that all share a common length. A "train of length 5" is a row of rods whose combined length is 5. Here are some examples:
trains0x.gif

Notice that the 1-2-2 train and the 2-1-2 train contain the same rods but are listed separately. If you use identical rods in a different order, this is a separate train.

* How many trains of length 5 are there?
* Come up with a formula for the number of trains of length n. (Assume you have rods of every possible integer length available.) Prove that your formula is correct.
* Come up with an algorithm that will generate all the trains of length n. Now I solved this problem, at least I think I solved it.
A formula for the number of trains of length n will be
a=length of a train
h=how many trains of a given length
2^(a-2) + 2^(a-3) + 2^(a-4)+...+ 2^2 + 2^1 + 2^0 = h
if a > 3
I'm not truly sure, if this formula is right, it works for 4,5,6,7 and seems to work for every length above 7, it doesn't work for lengths 1,2,3 though,
Also I have a problem with an algorithm.
Can anyone help me make one, or at least give some clues ont "how to make a good algorithm?" (eventually you may post some good books on algorithms. I got some books in my eye on algorithms, however still have not enough money or time to read 'em)

thanks for all the help fellows,
 
Last edited:
Physics news on Phys.org
The formula can be made much simpler. Write out a list of the h values for a = 1, 2, 3, 4, 5, 6, 7, ... There's a very obvious pattern. The idea for the algorithm should follow from the way you think about solving the first problem. Here's a hint: how do you figure out how many ways you can build an n-train if you know how many ways you can build an n-1-train, and n-2-train, ..., a 1-train, (and a 0-train)? Everything about this problem screams "recursion" so your algorithm should be recursive. You should probably end up using some sort of "recursive thinking" to solve the first problem, and you can apply this recursive thinking to figure out your algorithm.
 
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Back
Top