Can't we do something like this:
$2n = 6k - 1$ where k is an integer and n is a normal number
We treat $k' = 2k$ which means
$2n = 3k' - 1$
And by using modulo arithmetic
$2n = -1 (mod 3)$
Which is $n = 1 (mod 3)$ since 2 and 3 are co-prime.
Then the solution is that $n = 3p + 1$ where p is an integer.
The book says that it has no solution but isn't this a solution?
I'm definitely wrong but I applied this solution to many problems before, I dunno why I can't apply it here?
EDIT: I'm so sorry, I mean $n$ is a natural number not normal.