Using Induction to Show a Function is Decreasing

Click For Summary

Discussion Overview

The discussion revolves around proving that the function f(x) = x^(1/x) is decreasing for integers x greater than 2, with a focus on using mathematical induction as the primary method of proof. Participants explore various approaches, including logarithmic manipulation and derivative analysis, while addressing the challenges posed by the function's behavior over integers versus real numbers.

Discussion Character

  • Exploratory
  • Technical explanation
  • Debate/contested
  • Mathematical reasoning

Main Points Raised

  • One participant proposes using induction, starting with the base case of 3^(1/3) > 4^(1/4), and assumes (k-1)^(1/(k-1)) > k^(1/k) to prove k^(1/k) > (k+1)^(1/(1+k)).
  • Another suggests using the inequality log(k + 1) - log(k) < 1, but questions its applicability in the context of the proof.
  • Some participants argue that the function is not strictly decreasing for x > 2, citing the existence of a local maximum at x = e.
  • There is a discussion about the validity of induction for integers versus real numbers, with some noting that induction may not capture the function's behavior between integers.
  • A later reply presents a successful proof using induction, demonstrating that (1 + 1/k)^k < k for k > 2, and elaborates on the steps taken to reach this conclusion.

Areas of Agreement / Disagreement

Participants express differing views on whether the function is strictly decreasing for integers greater than 2, with some asserting it is not due to the local maximum at x = e. The discussion remains unresolved regarding the applicability of induction in this context, as well as the function's behavior between integer values.

Contextual Notes

Some participants highlight that the function is defined over positive reals, which may affect the interpretation of the proof when restricted to integers. There are also unresolved technicalities regarding the manipulation of logarithmic expressions and the continuity of the function.

Who May Find This Useful

This discussion may be of interest to those studying mathematical proofs, particularly in the context of inequalities and induction, as well as individuals exploring the properties of functions defined over integers versus real numbers.

Dschumanji
Messages
153
Reaction score
1
I have recently been studying the following function for fun (math nerd):

f(x) = x^(1/x) where x is an integer greater than 0

I want to prove that the function is decreasing for x > 2. It seems that the straight forward approach to this proof is to use induction. It can easily be shown that 3^(1/3) > 4^(1/4), which becomes my base case. I then assume that the following inequality holds:

(k-1)^(1/(k-1)) > k^(1/k)

Using the above inequality I must show that:

k^(1/k) > (k+1)^(1/(1+k))

I have tried everything in my mathematical toolkit to rewrite the first inequality into something that looks like the second but to no avail. My last attempt involved taking the logarithm to the base k-1 on the left side and the logarithm to the base k on the right side. It seems to work but I run into some technicalities that I can't seem to get around when I try to raise each side to a different base. Someone please help!
 
Mathematics news on Phys.org
Try using the fact that log(k + 1) - log(k) < 1, which is true because in your conditions
1 + 1/k < 1/e
 
Petr Mugver said:
Try using the fact that log(k + 1) - log(k) < 1, which is true because in your conditions
1 + 1/k < 1/e
I'm not seeing how using log(k+1) - log(k) < 1 should help me out. I am able to go from

(k-1)^(1/(k-1)) > k^(1/k)

to

log(k+1) - (k/(k-1))log(k-1) < 1

Also where in my conditions do I imply 1 + 1/k < 1/e?
 
The fallacy i see is that the function is not strictly decreasing when x>2.

If we find derive the function and look at its extremum, we see that.

The maximum of the function is [tex]( \, e \, , \, \sqrt[\large{e}]{e} )[/tex]

Therfore the function is increasing between x=2 and x=e , and decreases after this.
 
I get a local max at e also.

I always like turning these into exponential functions with base e:

x^(1/x)=e^((ln x)/x)

But that's coming at it from a different angle than the OP.
 
Nebuchadnezza said:
The fallacy i see is that the function is not strictly decreasing when x>2.

If we find derive the function and look at its extremum, we see that.

The maximum of the function is [tex]( \, e \, , \, \sqrt[\large{e}]{e} )[/tex]

Therfore the function is increasing between x=2 and x=e , and decreases after this.
Yes, the maximum of the function occurs at x = e when the function is defined over the real numbers. The function is only defined for integers greater than zero.
 
Just reread the title, this is by induction - sorry, my comment is a red herring!

However, the question is whether to show decreasing after e, or show by induction? Induction, technically will only be valid for integers, rather than for all numbers. You can wave your arms about continuity, but indeuction won't guarantee that it doesn't do something funny between the integers.

So, I guess the question is whether you want if decreasing on integers or also between them.

Btw, the general domain for this function IS all positive reals, unless otherwise restrcited.
 
Last edited:
I got to read more carefully, the "x" threw me, rather than an "n" (creature of habit), guess the problem is for integers. You can still prove for all numbers greater than e, which includes the integers. Then you can use the derivative that will work if you decide to take a different path.
 
Maxter said:
I got to read more carefully, the "x" threw me, rather than an "n" (creature of habit), guess the problem is for integers. You can still prove for all numbers greater than e, which includes the integers. Then you can use the derivative that will work if you decide to take a different path.
Would I just have to show that the derivative is negative for x > e?
 
  • #10
Yes.
 
  • #11
Nebuchadnezza said:
Yes.
Well that is definitely good to know. However, it still doesn't help with the original question of using induction. Is it perhaps possible that this cannot be proved with induction?
 
  • #12
It looks like no one else has any input on how to solve this problem. I would like to thank everyone who helped with the alternative proof!

It is so interesting that this problem is hard to solve when restricted to the simple structure of the integers and the methods applicable to it, but easy to solve when the more complex structure of the reals and the methods applicable to it are used.
 
  • #13
Dschumanji said:
I have recently been studying the following function for fun (math nerd):

f(x) = x^(1/x) where x is an integer greater than 0

I want to prove that the function is decreasing for x > 2. It seems that the straight forward approach to this proof is to use induction. It can easily be shown that 3^(1/3) > 4^(1/4), which becomes my base case. I then assume that the following inequality holds:

(k-1)^(1/(k-1)) > k^(1/k)

Using the above inequality I must show that:

k^(1/k) > (k+1)^(1/(1+k))

I have tried everything in my mathematical toolkit to rewrite the first inequality into something that looks like the second but to no avail. My last attempt involved taking the logarithm to the base k-1 on the left side and the logarithm to the base k on the right side. It seems to work but I run into some technicalities that I can't seem to get around when I try to raise each side to a different base. Someone please help!

Ok I got it.

elevate the equation k^(1/k) > (k+1)^(1/(1+k)) to k(k+1), and then divide by k to obtain

(1 + 1/k)^k < k (*)

we want to show this is true for k > 2 by induction. It is true for k = 3. Then write

(1 + 1/(k+1))^(k+1) < (1 + 1/k)^(k+1) = (1 + 1/k)(1 + 1/k)^k

which is obviously true. Then, uning the inductive hypothesis (*),

(1 + 1/k)(1 + 1/k)^k < (1 + 1/k)k = k + 1

So

(1 + 1/(k+1))^(k+1) < k + 1

which is what we wanted to proove.
 
  • #14
Petr Mugver said:
Ok I got it.

elevate the equation k^(1/k) > (k+1)^(1/(1+k)) to k(k+1), and then divide by k to obtain

(1 + 1/k)^k < k (*)

we want to show this is true for k > 2 by induction. It is true for k = 3. Then write

(1 + 1/(k+1))^(k+1) < (1 + 1/k)^(k+1) = (1 + 1/k)(1 + 1/k)^k

which is obviously true. Then, uning the inductive hypothesis (*),

(1 + 1/k)(1 + 1/k)^k < (1 + 1/k)k = k + 1

So

(1 + 1/(k+1))^(k+1) < k + 1

which is what we wanted to proove.
That was brilliant, Petr Mugver! Thank you for the excellent solution (I hope you didn't spend to long on it). I feel so stupid considering how straight forward it is. I really need to practice proofs concerning inequalities and induction, they seem to always require applying strange operations and noticing certain subtleties.
 

Similar threads

  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 13 ·
Replies
13
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 7 ·
Replies
7
Views
4K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 5 ·
Replies
5
Views
1K
  • · Replies 9 ·
Replies
9
Views
4K