Looking for a function

Mr_Random_Guy

New member
Joined
Jul 28, 2018
Messages
5
I want a mathematical function (floor/ceiling etc. are fine but not piecewise) which does the following:
If the input is odd, just return that number i.e f(2n+1) = 2n+1
If the input is even return the odd number one less than it i.e f(2n) = 2n-1

So for example f(4)=3, f(3)=3
 
I want a mathematical function (floor/ceiling etc. are fine but not piecewise) which does the following:
If the input is odd, just return that number i.e f(2n+1) = 2n+1
If the input is even return the odd number one less than it i.e f(2n) = 2n-1

So for example f(4)=3, f(3)=3
Did you read our guidelines at

https://www.freemathhelp.com/forum/threads/112086-Guidelines-Summary?p=433156&viewfull=1#post433156

If not, please do so and give us some clues about your course and your mathematical background.

Hint: \(\displaystyle n \in \mathbb Z \implies n - 2 * \left \lfloor \dfrac{n}{2} \right \rfloor = \text {WHAT?}.\)

EDIT: This question came up in pre-algebra? That is where it is posted!
 
Last edited:
No I hadn't, thank you. Am in college, although this question is entirely unrelated to anything I'm currently doing. Thanks for the hint, got it.
 
Top