answersLogoWhite

0


Best Answer

there are 4 different ways you can do it

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
User Avatar

Anonymous

Lvl 1
3y ago
thx
User Avatar

Anonymous

Lvl 1
3y ago
what are they though?
User Avatar

Anonymous

Lvl 1
3y ago
Ikr what are they?
User Avatar

Sharnika Sabesh

Lvl 1
1y ago
how many different recursive patterns can you find with 4 and 7 as the first 2 terms?write 5 terms of each pattern,then write the pattern rule
More answers
User Avatar

Wiki User

8y ago

Infinitely many.

U(n) = U(n-1) + 3

U(n) = 2*U(n-1) - 1

U(n) = 3*U(n-1) - 5

and so on.

You could also use fractional coefficients, or non-linear equations.

This answer is:
User Avatar

User Avatar

Maddie Nicole

Lvl 2
2y ago

How many different recursive patterns can you find with 4 and 7 as the first 2 terms?

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

10

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How many different recursive patterns can you find with 4 and 7 as the first 2 terms?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Are all patterns recursive?

No, patterns with terms that are not based upon previous terms are not recursive. Example: i * i where i is the nth term of the pattern.


How many recursive patterns can you find with 4 plus 7 as the first 2 terms?

Infinitely many. For example: Un+1 = Un + 3 or Un+1 = 2*Un - 1 or Un+1 = 3*Un - 5 or, more generally, Un+1 = k*Un + 7 - 4*k where k is any number. Each one of them will be different from the third term onwards. These are linear patterns. There are quadratic and other recursive relationships.


What is a recursive rule?

It is a term for sequences in which a finite number of terms are defined explicitly and then all subsequent terms are defined by the preceding terms. The best known example is probably the Fibonacci sequence in which the first two terms are defined explicitly and after that the definition is recursive: x1 = 1 x2 = 1 xn = xn-1 + xn-2 for n = 3, 4, ...


Why is Fibonacci recursive?

Each term, except the first two, in the Fibonacci sequence is defined in terms of terms that went earlier in the sequence. That is the meaning of "recursive". t(1) = 1 t(2) = 1 t(n+2) = t(n) + t(n+1) for n = 1, 2, 3, ...


What is the difference between an explicit rule and a recursive rule?

An explicit rule defines the terms of a sequence in terms of some independent parameter. A recursive rule defines them in relation to values of the variable at some earlier stage(s) in the sequence.


What is base case?

A base case is the part of a recursive definition or algorithm which is not defined in terms of itself.


What is a base case?

A base case is the part of a recursive definition or algorithm which is not defined in terms of itself.


What describes a recursive sequence A a sequence that has a common difference between terms B a sequence that has a common ratio between terms C a sequence relating a term to one?

A: Un+1 = Un + d is recursive with common difference d.B: Un+1 = Un * r is recursive with common ratio r.C: The definition seems incomplete.A: Un+1 = Un + d is recursive with common difference d.B: Un+1 = Un * r is recursive with common ratio r.C: The definition seems incomplete.A: Un+1 = Un + d is recursive with common difference d.B: Un+1 = Un * r is recursive with common ratio r.C: The definition seems incomplete.A: Un+1 = Un + d is recursive with common difference d.B: Un+1 = Un * r is recursive with common ratio r.C: The definition seems incomplete.


What is an example of a recursive pattern that has 2 and 9 as the first two terms?

a pattern is a pattern guys come on u shoul know that is really very esay i want tell you the answerthink by your self


What is recursive call in terms of algorithm?

A recursive call in an algorithm is when a function (that implements this algorithm) calls itself. For example, Quicksort is a popular algorithm that is recursive. The recursive call is seen in the last line of the pseudocode, where the quicksort function calls itself. function quicksort('array') create empty lists 'less' and 'greater' if length('array') ≤ 1 return 'array' // an array of zero or one elements is already sorted select and remove a pivot value 'pivot' from 'array' for each 'x' in 'array' if 'x' ≤ 'pivot' then append 'x' to 'less' else append 'x' to 'greater' return concatenate(quicksort('less'), 'pivot', quicksort('greater'))


What is recursive function?

A recursive function is one in which the value of a function at each point depends on its value at one or more previous points. A rercursive function requires the first few values to be defined normally - these are called bases. Perhaps one of the most famous recursive function is the Fibonacci series, which has f(1) = 1 f(2) = 1 f(n) = f(n-1) + f(n-2) for n = 3, 4, 5, ... There are two bases and each subsequent value is defined in terms of the preceding two.


Did you mean recursion?

By definition, recursion means the repeated application of a recursive definition or procedure. It is used to define an object in terms of itself in computer science and mathematical logic.