Thursday, September 17, 2015

discrete mathematics - How to prove if log is rational/irrational

I'm an English major, now doubling in computer science. The first course I'm taking is Discrete Mathematics for Computer Science, using the MIT 6.042 textbook.




Within the first chapter of the book's practice problems, they ask us multiple times to prove that some log function is either rational or irrational.



Specific cases make more sense than others, but I would really appreciate any advice on how to approach these problems. Not how to carry them out algebraically, but what thought constructs are necessary to consider a log being (ir)rational.



For example, in the case of $\sqrt{2}^{2\log_2 3}$, proving that $2\log_23$ is irrational (and therefore $a^b$, when $a=\sqrt{2}$ and $b=2\log_23$, is rational) is not an easily solvable problem. I understand the methods of proofs, but the rules of logs are not intuitive to me.



A section from my TF's solution is not something I would know myself to construct:



Since $2 < 3$, we know that $\log_23$ is positive

(specifically it is greater than $1$), and hence so is $2\log_23$. Therefore, we can assume that $a$ and $b$ are two positive integers.
Now $2\log_2 3=a/b$ implies $2^{2\log_2 3}=2^{a/b}$.
Thus $$2^{a/b}=2^{2\log_2 3} = 2^{\log_2 3^2} =3^2 =9\text{,}$$
and hence $2^a = 9^b$.



Any advice on approaching thought construct to logs would be greatly appreciated!

No comments:

Post a Comment

analysis - Injection, making bijection

I have injection $f \colon A \rightarrow B$ and I want to get bijection. Can I just resting codomain to $f(A)$? I know that every function i...