answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How are recursive and explicit rules the same?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How are recursive rules different from explicit function rules for modeling linear data?

recursive rules need the perivius term explicit dont


Will the explicit formula find the same answer when using the recursive formula?

It is often possible to find an explicit formula that gives the same answer as a given recursive formula - and vice versa. I don't think you can always find an explicit formula that gives the same answer.


How are recursive rules same from explicit function rules?

The question does not make sense."Same as" would mean you want to know what the similarities are."Different from" would mean you want to know how they are different.However, "same from" means neither.


What recursive formulas represents the same arithmetic sequence as the explicit formula an 5 n - 12?

-7


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 the recursive rule and explicit rule for 3 12 48?

Each number is -4 times the previous one. That means that you can write a recursive rule as: f(1) = -3 f(n) = -4 * f(n-1) The explicit rule involves powers of -4; you can write it as: f(n) = -3 * (-4)^(n-1)


What is the recursive rule and explicit rule for -3 12 -48 192?

Each number is -4 times the previous one. That means that you can write a recursive rule as: f(1) = -3 f(n) = -4 * f(n-1) The explicit rule involves powers of -4; you can write it as: f(n) = -3 * (-4)^(n-1)


What are Explicit Rules?

Rules that are stated clearly and in detail, leaving no room for confusion or doubt.


What is the difference between function and recursive function?

I will explain in the easiest way the difference between the function and recursive function in C language. Simple Answer is argument of the function is differ but in the recursive function it is same:) Explanation: Function int function(int,int)// function declaration main() { int n; ...... ...... n=function(a,b); } int function(int c,int d) { ...... ...... ...... } recursive Function: int recursive(int,int)// recursive Function declaration main() { int n; ..... ..... ..... ..... n=recursive(a,b); } int recursive(int a,int b) { ..... .... .... .... } Carefully see, In the recursive Function the function arguments are same.


What is a nonexample of something that is explicit?

Something illegal or against the rules.


The football coach posted the team rules on the bulletin board What is this an example of?

explicit norms


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

a recursive formula is always based on a preceding value and uses A n-1 and the formula must have a start point (an A1) also known as a seed value. unlike recursion, explicit forms can stand alone and you can put any value into the "n" and one answer does not depend on the answer before it. we assume the "n" starts with 1 then 2 then 3 and so on arithmetic sequence: an = a1 + d(n-1) this does not depend on a previous value