answersLogoWhite

0


Best Answer

t(n+1) = t(n) + 6

t(1) = -14

User Avatar

Wiki User

14y ago

Still curious? Ask our experts.

Chat with our AI personalities

LaoLao
The path is yours to walk; I am only here to hold up a mirror.
Chat with Lao
EzraEzra
Faith is not about having all the answers, but learning to ask the right questions.
Chat with Ezra
TaigaTaiga
Every great hero faces trials, and you—yes, YOU—are no exception!
Chat with Taiga

Add your answer:

Earn +20 pts
Q: What is the recursive formula for -14 -8 -2 4 10?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the recursive formula for the function f(n) where f(n) is defined as f(n) (f(n/2))?

The recursive formula for the function f(n) is f(n) f(n/2).


What is the recursive formula for 2 1 3 4 7 11?

It look like a Fibonacci sequence seeded by t1 = 2 and t2 = 1. After that the recursive formula is simply tn+1 = tn-1 + tn.


What is is a recursive formula?

A recursive formula is one that references itself. The famous example is the Fibonacci function: fib(n) := fib(n-1) + fib(n-2), with the terminating proviso that fib(0) = 0 and fib(1) = 1.


What is the formula for the iodate anion?

(1.0*10^-14)/(1.6*10^-1)= Kb Kb=6.25*10^-14


What is the sequence if the formula is 6n-4?

10


What is analysis of recursive program?

1) Recursive algorithms 2) Basic Principle 3) Analysis


What is the area of a triangle with a base of 10 inches and an altitude of 14 inches?

The formula for area of a triangle is A = bh/2 where b is the base and h is the heigth. multipy b x h and then divide by 2 to find the area. Based on the values given, multiply 10 x 14 and then divide by 2: 10 x 14 = 140 / 2 = 70 sq in


Jntu 2-2 oops through java answers?

write a java program to find factorial using recursive and non recursive


How do you write a recursive function for summing ints?

for example "sumNums(12345)" would sum 1+2+3+4+5. the recursive code is just really confusing me. unsigned sumDigits (unsigned n) { . . if (n<10) return n; . . else return n%10 + sumDigits (n/10); }


What is a recursive formula and what is it used for Geometric and Arithmetic?

A recursive definition is any definition that uses the thing to be defined as part of the definition. A recursive formula, or function, is a related formula or function. A recursive function uses the function itself in the definition. For example: The factorial function, written n!, is defined as the product of all the numbers, from 1 to the number (in this case "n"). For example, the factorial of 4, written 4!, is equal to 1 x 2 x 3 x 4. This can also be defined as follows: 0! = 1 For any "n" > 0, n! = n x (n-1)! For example, according to this definition, the factorial of 4 is the same as 4 times the factorial of 3. Try it out - apply the recursive formula, until you get to the base case. Note that a base case is necessary; otherwise, the recursion would never end.


What are the 2 numbers if the arithmetic mean is 7 and the geometric mean is 3?

(x+y)/2=7; x+y=14; y=14-x 3=√(xy); xy=9; y=9/x Use substitution: 14-x=9/x; 14x - x2=9; x2 - 14x +9=0 Use the quadratic formula: x=[14±√(196-36)]/2; x=[14±√160]/2; x=[14±4√10]/2 x=7+2√10 or x=7-2√10 If x=7+2√10, then y=14-(7+2√10)=7-2√10 If x=7-2√10, then y=14-(7-2√10)=7+2√10 The first pair's geometric mean is √[(7+2√10)(7-2√10)]=√[72-(2√10)2]=√(49-40)=√9=3. The first pair's arithmetic mean is (7+2√10 +7-2√10)/2=14/2=7 The second pair's geometric mean is √[(7-2√10)(7+2√10)]=√[72-(2√10)2]=√(49-40)=√9=3. The second pair's arithmetic mean is (7-2√10 +7+2√10)/2=14/2=7 That's it!


If a shape has 14 corners and 10 faces how many edges would it have?

By Euler's formula for the relationship between the number of Vertices, Faces and Edges of a polyhedron, V + F = E + 2 so 14 + 10 = E + 2 so that E = 22.