1) Big, big problems with absolute value bars when trying to find such natural numbers N(a) where |-1 - (2-n)/n| < e
We could write it:
...or:
If we write it:
Second way: I am not even shure how to do since I don't know what should happen to the equation when we remove absolute value bars.
I need to learn how to do this both ways.
2) For what x will infinite geometric sequence 3 + 2/x + 4/(3x^2) converge? Since common ratio k has to be |k| < 1, I think k = |2/(3*x)| < 1
What would best method be? I broken the problem in two parts. First part:
. . .2/(3*x) > 0
...and in second:
. . .2/(3*x) < 0
First part:
Second part:
3) And last question: How many terms must we add for geometric sequence to be 18,27... > 1000
. . .common ration k = 3/2
n1 is not equal to n2 so wrong!
Thank you.
Code:
e = 1/100
lim[n->00](2-n)/n = -1
Code:
-1 - (2-n)/n < -1/100
Code:
|-1 - (2-n)/n| < 1/100
Code:
-1 - (2-n)/n < -1/100
-2/n < -1/100
2/n > 1/100
200 > n //wrong
Code:
|-1 - (2-n)/n| < 1/100
2) For what x will infinite geometric sequence 3 + 2/x + 4/(3x^2) converge? Since common ratio k has to be |k| < 1, I think k = |2/(3*x)| < 1
What would best method be? I broken the problem in two parts. First part:
. . .2/(3*x) > 0
...and in second:
. . .2/(3*x) < 0
First part:
Code:
2/(3*x) < 1
2/3 < x
Code:
-1 < -2/(3*x) < 0
-2/(3*x) < -1
2/3 > x
3) And last question: How many terms must we add for geometric sequence to be 18,27... > 1000
. . .common ration k = 3/2
Code:
1000 < 12*(k^n - 1)/(k-1)
512/12 < (n * log3)/(n * log2)
log512 < n1 * log3
log512/log3 < n
log12 < n * log2
log12/log2 < n2
Thank you.