Finding f(n) for All Multiples of 5

  • Thread starter Thread starter Dustinsfl
  • Start date Start date
Dustinsfl
Messages
2,217
Reaction score
5
F is all integers that are multiplies of 5

f(n) = <br /> \begin{cases} <br /> 0, &amp; \mbox{if }n\mbox{ 1} \\<br /> \frac{5n}{2}, &amp; \mbox{if }n\mbox{ is even}\\<br /> ? , &amp; \mbox{if }n\mbox{ is odd}<br /> \end{cases}<br />

N exists in the natural number
I don't know how to obtain the function that will represent the odd integers.
 
Last edited:
Physics news on Phys.org
Are you trying to get a function that produces all the integer multiples of 5?

Whats wrong with f(n) = 5n ?
 
Gib Z said:
Are you trying to get a function that produces all the integer multiples of 5?

Whats wrong with f(n) = 5n ?

I forgot to mention n exists in the natural numbers.
 
Ok then, the n is even part of your function will give all the positive multiples, now try something similar for n odd. I don't know how to give you a decent hint without giving it away, but basically, the odd case is very similar to the even case, except with a negative sign, and a little change to the n term to make sure it's divisible by 2.
 
Prove $$\int\limits_0^{\sqrt2/4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx = \frac{\pi^2}{8}.$$ Let $$I = \int\limits_0^{\sqrt 2 / 4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx. \tag{1}$$ The representation integral of ##\arcsin## is $$\arcsin u = \int\limits_{0}^{1} \frac{\mathrm dt}{\sqrt{1-t^2}}, \qquad 0 \leqslant u \leqslant 1.$$ Plugging identity above into ##(1)## with ##u...
Back
Top