PDA

View Full Version : Proofs


roam
Apr5-09, 12:49 AM
1. The problem statement, all variables and given/known data

A sequence (an: n \in N) is defined by an= (2n+3)/(3n+6) for all n \in N.

(a) Prove that this sequence is bounded above by 2/3;

(b) Prove that the sequence (an: n \in N) is monotonely increasing by showing that 0<an+1-an for all n \in N.

3. The attempt at a solution

I need to write a perfect proof for this question, I made an attempt but I'm not sure if I'm using the right method and whether my proof is valid or makes any sense...

My attempt for part (a):

I want to use the method of induction. For this I need to show that (A) 1 \in S, then (B) if a number n \in S then so is the number after n.

If k is some natural number in the sequence, for k=1:

a_{n}=\frac{2.1+3}{3.1+6} = \frac{5}{9} \leq \frac{2}{3}

Now, we have shown that a_{k} \leq \frac{2}{3} and also premise A

ak+1 = (2.2+3)/(3.2+6)= 7/12 ≤ 2/3

Therefore an ≤ 2/3 for all n \in N.

I appreciate some guidance. Thank you.

cordyceps
Apr5-09, 01:15 AM
Have you tried manipulating the expression (2n+3)/(3n+6)? Separating the expression into two fractions might help.

lanedance
Apr5-09, 01:40 AM
hi roam

i don't think you have shown that by induction, you have shown it is true for n=1 and n = 2

induction requires showing its true for n=1 and then assume its true for n, use that condition to show it is true for n+1, thus inducting it is true for all n

looking at ways other than induction, it could be enough to show b) first and then look at the limit as n goes to infinty...

otherwise for arbitrary n, you could assume a(n)>2/3 and check the condition required on n for this to be true, looking for a contradiction

roam
Apr5-09, 08:25 PM
hi roam

i don't think you have shown that by induction, you have shown it is true for n=1 and n = 2

induction requires showing its true for n=1 and then assume its true for n, use that condition to show it is true for n+1, thus inducting it is true for all n

looking at ways other than induction, it could be enough to show b) first and then look at the limit as n goes to infinty...

otherwise for arbitrary n, you could assume a(n)>2/3 and check the condition required on n for this to be true, looking for a contradiction

Hi!

That's true but if I want to use induction, I'm not sure how to do the last step:

Our proposition P(n) is: an ≤ 2/3 for all n \in N

for n = 1

a_{n}=\frac{2.1+3}{3.1+6} = \frac{5}{9} \leq \frac{2}{3}

So, P(n) is true for n=1

Suppose that P(k) is true, we shall try to show that P(k+1) is true:

a_{k+1}=\frac{2(k+1)+3}{3(k+1)+6}

I need some help here because i'm not sure what to do after this...

lanedance
Apr5-09, 09:57 PM
i think the point is you don't really need induction here, following on from cordyceps, you can just re-arrange the fraction

a_n = \frac{2.n+3}{3.n+6} = \frac{2.n}{3.n+6} + \frac{3}{3.n+6}
= \frac{2}{3} (\frac{n}{n+2}) + \frac{1}{n+2}
= \frac{2}{3} (\frac{n}{n+2} + \frac{3/2}{n+2})
= \frac{2}{3} (\frac{n + 3/2}{n+2})

which is <2/3 for all n>0

roam
Apr6-09, 02:11 AM
So, separating out the expression as you did will be sufficient as a proof for part (a)? (To me it makes sense)


Btw, does my first post answer part (b)?

In that post I showed it's true for n=1 and n = 2 but not for all n \in N and that's the problem. Do I need the induction here to show that 0<an+1-an (and hence the series is monotonely increasing)?

lanedance
Apr6-09, 02:44 AM
i don't think you will need to induct... i would first try writing the expression out and see if it is obvious to show it is true for all n

CompuChip
Apr6-09, 03:11 AM
Induction is indeed a very complicated way, because it is not easy to get the right estimate.
Personally I like the approach where you first solve b - which involves some algebra but is otherwise rather straightforward - and then show a using b and the limit of the terms as n goes to infinity.

roam
Apr6-09, 05:25 AM
I'm a little confused right now, I mean we already know that \frac{2}{3} (\frac{n + 3/2}{n+2}) < \frac{2}{3} & that sort of answers part (a), doesn't it? For part (b) I have to show that an+1>an, I've already tested the series for n=1 and n=2 but not for all n.

The limit (let's call it L) of the terms as n->∞ is 2/3 but I don't know how that helps in this case. :rolleyes:

lanedance
Apr6-09, 05:31 AM
Compuchip is suggesting a method for the whole problem that was mentioned earlier, if you show b) the function is monotonically increasing and has limit 2/3, then it can never exceed 2/3, thus proving a)

However as we have shown a) and want to show b) just write
a_{n+1} - a_n
this should simplify to an expression that is always positive, without too much work

roam
Apr6-09, 06:17 PM
before we find the limit we need to show that it is monotonely increasing, I didn't couldn't show that. I only showed that n=2 > n=1 but didn't show that an+1>an for all n!

lanedance
Apr6-09, 07:31 PM
re-read my last post

just write
a_{n+1} - a_n

it should simply be a matterof re-arranging to show it is positive for all n>0, thus showing the sequence is monotonically increasing

try it...

roam
Apr14-09, 10:03 PM
Compuchip is suggesting a method for the whole problem that was mentioned earlier, if you show b) the function is monotonically increasing and has limit 2/3, then it can never exceed 2/3, thus proving a)

However as we have shown a) and want to show b) just write
a_{n+1} - a_n
this should simplify to an expression that is always positive, without too much work

Yes, I know how to prove part (b) by showing that an+1 - an is some positive expression.

The problem is here: we must show part a) first and then show part b) (i.e. show that it is bounded above by 2/3 before you show that it is strictly increasing).

That strategy doesn't work, I'm supposed to answer the questions in order, we can't do b) first and then use the results obtained in b) to prove a).