<span>f(x)=f(x−1)+2 this is one example =)</span>
Use formula: an = a1 * r^(n-1)
a1 = 2, r = -2
a12 = 2 * -2^(12-1)
a12 = 2 * -2^11
a12 = 2 * -2048
a12 = -4096
Solution: -4096
Answer:
41.8
Step-by-step explanation:
The rectangles are similar by a factor of 10, so simply divide the measure by 10 to get the length of the smaller one.
Answer:
7/12 of a chance
Step-by-step explanation:
If you have 12 batteries and 5 are dead, 12 - 5 is 7, so there's going to be 7/12 of a chance.
Answer:
min = a_1
for i:= 2 to n:
if
< min then min = 
return min
Step-by-step explanation:
We call the algorithm "minimum" and a list of natural numbers 
So lets first set the minimum to 
min = a_1
now we want to check all the other numbers.
We can use a simple for loop, to find the minimum
min = a_1
for i:= 2 to n:
if
< min then min = 
return min