In mathematics, the triangular numbers are a sequence of numbers where the nth number is given by the sum from 1 to N.
TNβ=1+2+3+...+Nβ1+N
For example, the first few triangular numbers are:
T1β=1T2β=1+2=3T3β=1+2+3=6
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.
C++
TriangleNumberCalculator calculator;cout << calculator.value(1); // This should print out 1cout << calculator.value(2); // This should print out 3cout << calculator.value(4); // This should print out 10cout << calculator.add(1, 1); // This should print out 2cout << calculator.add(2, 3); // This should print out 9cout << calculator.add(4, 2); // This should print out 13cout << calculator.subtract(1, 1); // This should print out 0cout << calculator.subtract(2, 3); // This should print out -3cout << calculator.subtract(4, 2); // This should print out 7
Java
TriangleNumberCalculator calculator = new TriangleNumberCalculator();System.out.println(calculator.value(1)); // This should print out 1System.out.println(calculator.value(2)); // This should print out 3System.out.println(calculator.value(4)); // This should print out 10System.out.println(calculator.add(1, 1)); // This should print out 2System.out.println(calculator.add(2, 3)); // This should print out 9System.out.println(calculator.add(4, 2)); // This should print out 13System.out.println(calculator.subtract(1, 1)); // This should print out 0System.out.println(calculator.subtract(2, 3)); // This should print out -3System.out.println(calculator.subtract(4, 2)); // This should print out 7
π Thought Provoking Questions
What is the biggest argument you can enter into TriangleNumberCalculator#value(int n) before you get a stack overflow error?
What is the biggest argument you can enter into TriangleNumberCalculator#add(int n) before you get a stack overflow error?
What is the biggest argument you can enter into TriangleNumberCalculator#subtract(int n) before you get a stack overflow error?
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: T1β,T2β,T3β,...,TNβ. Be sure to test your method!