πŸ”– Background Information

In mathematics, the triangular numbers are a sequence of numbers where the nth number is given by the sum from 1 to N.

For example, the first few triangular numbers are:

And so on…

🎯 Problem Statement

Create a class called TriangleNumberCalculator that performs calculations with triangular numbers (outlined in the Acceptance Criteria below).

βœ… Acceptance Criteria

Create a class called TriangleNumberCalculator with the following methods:

  • int value(int n) which returns the nth triangular number
  • int add(int n, int m) which adds the nth and mth triangular numbers
  • int subtract(int n, int m) which subtracts the nth and mth triangular numbers

πŸ“‹ Dev Notes

  • You must use recursion to calculate the triangular numbers. Yes, you could use a for loop to solve these problems, but the theme of this lab is recursion πŸ™‚

πŸ–₯️ Example Output

Here is an example of how you might use the TriangleNumberCalculator class.

πŸ“ Thought Provoking Questions

  1. What is the biggest argument you can enter into TriangleNumberCalculator#value(int n) before you get a stack overflow error?
  2. What is the biggest argument you can enter into TriangleNumberCalculator#add(int n) before you get a stack overflow error?
  3. What is the biggest argument you can enter into TriangleNumberCalculator#subtract(int n) before you get a stack overflow error?
  4. How do your results for questions 1 - 3 relate to each other? Is this what you expected?

πŸ’Ό Add-Ons For the Portfolio

(One Credit) Multiplication

Implement a method called int multiply(int n, int m) which multiplies the nth and mth triangular numbers. Be sure to test your method!

(One Credit) Division

Implement a method called double divide(int n, int m) which divides the nth and mth triangular numbers. Be sure to test your method!

(Two Credits) Sequence

Implement a method called sequence(int n) which returns a list of triangle numbers up to the Nth number: . Be sure to test your method!

πŸ“˜ Works Cited

N/A