How to prove that $\lfloor x + k \rfloor=\lfloor x\rfloor + k$ when $k$ is an integer?
Asked
Active
Viewed 65 times
-2
-
Since this is a site that encourages and helps with learning, it is best if you show your own ideas and efforts in solving the question. Can you edit your question to add your thoughts and ideas about it? – 5xum Mar 10 '16 at 09:20
2 Answers
2
We have $\lfloor x\rfloor \le x<\lfloor x\rfloor +1$, hence $\lfloor x\rfloor +k\le x+k<\lfloor x\rfloor+k +1$, so that the integer $\lfloor x\rfloor +k$ fulfills the defining property of $\lfloor x+k\rfloor$.
Hagen von Eitzen
- 374,180
-1
1) ⌊x⌋ = x - {x}
2) {k} = 0
3) ⌊x + k⌋ = x + k - {x + k}
According to point 2:
{x + k} = {x}
And from there on just replace the parts in point 3.
x + k - {x + k} = x + k - {x} = x - {x} + k = ⌊x⌋ + k
Torn
- 235