Alpha Beta
Forum Replies Created
-
AuthorPosts
-
Alpha Beta
ParticipantAre you sure it's not g'(x)-g(x)-2e^x=0 ?
Partially differentiating the equation with respect to x and y separately, we get
g'(x+y)=g'(x)e^y+g(y)e^x
and, g'(x+y)=g(x)e^y+g'(y)e^x
so, g'(x)e^y+g(y)e^x=g(x)e^y+g'(y)e^x
or, [g'(x)-g(x)]e^y=[g'(y)-g(y)]e^x
suppose, for some x, g'(x)=g(x).
Then, for all y, 0=[g'(y)-g(y)]e^x.
Since, e^x is always positive, g'(y)-g(y)=0,
implying g(y)=e^(y+c) for all y, and some
constant c.
From g'(0)=2, we get g(y)=2e^y for all y.
From the equation, 2e^(x+y)=4e^(x+y) for all
x,y. Or, 2e^(x+y)=0, which is impossible.
Therefore, g'(x)-g(x) is non-zero for all x.
or, [g'(y)-g(y)]/[g'(x)-g(x)]=e^y/e^x, for all x,y.
So, g'(x)-g(x)=ke^x for all x, where k is a constant.
Solving, and imposing the 2 conditions ( g'(0)=2, and g(x+y)=g(x)e^y+g(y)e^x), we get
g(x)=2xe^x, implying, g'(x)-g(x)-2e^x=0.
Alpha Beta
ParticipantA mind-blowing problem! This will be my hot favourite application of binary search algorithm and nested intervals theorem. Well, you can apply this technique in many other real analysis problems, so follow it carefully:
If c=a and d=b satisfy the conditions, then we are done. Otherwise, suppose there is an x in [a,b] such that f(x) is not between f(a) and f(b). Two cases arise:
(i) f(x)>f(b), in which case, by continuity there is a b1 in (a,x) such that f(b1)=f(b). In this case, let a1=a.
(ii) f(x)<f(a), in which case, by continuity again, there is an a1 in (x,b) such that f(a1)=f(a). In this case, let b1=b.
Repeat this process on a1 and b1 to get a2 and b2, and so on, till you get an interval, say [a(n),b(n)] for some n, such that f(a(n))=f(a), f(b(n))=f(b) and for all x in (a(n),b(n)), f(x) is in (f(a),f(b)). Letting c=a(n) and d=b(n), we are done.
Suppose the algorithm never stops, that is you never arrive at an interval [a(n),b(n)] satisfying the given conditions. Then by nested intervals theorem, there is a t in [a,b] such that a(n)--> t and b(n)--->t as n-->infinity. But by continuity, f(a(n))--->f(t) and f(b(n))-->f(t) . So f(a)---> f(t) and f(b)---->f(t) [ basically, f(a(n)) and f(b(n)) are constant sequences tending to the same limit.] So f(t)=f(a)=f(b), contradicting f(a)<f(b).
Still an amateur at analysis, so please point out any errors. Cheers!
Alpha Beta
ParticipantSo n+7 divides (n+1)^2=n^2+2n+1.
Now n+7 divides (n+7)^2=n^2+14n+49
So n+7 divides (n^2+14n+49)-(n^2+2n+1)=12n+48
n+7 divides 12(n+7)=12n+84.
So n+7 divides (12n+84)-(12n+48)=36
n is a natural number, so n+7>=8. Factors of 36 >=8 are 36,18,12,9.
So n can be 29,11,5,2, out of which the expression is an integer only for n=2 and n=29. In the former case, the expression equals 1 and in the latter, 25.
-
AuthorPosts