Question: Description FULL JAVA CODE PLEASE a(n)=a(1)=2a(n)=4a(n1)3n,a(=2n=1 Given the Maths Function definition above for a mathematical function a(n) you are required to write two Java methods

Description FULL JAVA CODE PLEASE a(n)=a(1)=2a(n)=4a(n1)3n,a(=2n=1 Given the Maths Function definition above for a mathematical function a(n) you are required to write two Java methods - both methods will be in the same class. - A recursive method which calculates a( n) for any positive value of n. You should call this method q1 Recursive. The definition of the method should be declared as follows: public static int q1 Recursive(int n ) Both Java methods should only return the single value of a(n). They should not print any other values. Input n, an integer value. Sample Input 1 1 Output The method will print the value of a(n) for each method (which is a(1) in this case) on the same line separated by a space Sample Output 1 22 Sample Input 2 5 Output The method will print the value of a(n) for each method (which is a(5) in this case) on the same line seperated by a space Sample Output 2 7979
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
