| New Reply |
Finding if an integer is odd through Riemann or some function? |
Share Thread |
| Sep17-12, 01:16 AM | #1 |
|
|
Finding if an integer is odd through Riemann or some function?
I'm trying to find if a number is odd or not, basically if X % 2 = 1.
Can this be expressed through some function? Like the sum of 1 + 2 .. +n is n(n+1) /2 Or as a Riemann sum? I'm trying to add only the odd numbers from a random set of N integers to a sum. |
| Sep17-12, 03:02 AM | #2 |
|
|
x = 2 * (x/2). [using '=' as equality, not assignment] But if you already have a mod operator like % then you can just use that. |
| Sep17-12, 05:38 PM | #3 |
|
|
i'm not entirely sure what you're getting at either, but
2*n+1 is always an odd number, for any value of n. |
| Sep17-12, 05:46 PM | #4 |
|
|
Finding if an integer is odd through Riemann or some function?
ohh okay i think i see what you're saying, you have a set of random numbers, and you only want to add the odd ones.
yes the modulus function works well. if(x%2 == 1){ ... } alternatively, you can test the last bit to see if it's 1. if(x&1 == 1){ ... } this is slightly faster. |
| Sep18-12, 12:31 AM | #5 |
|
|
Not what I meant but I did word this problem poorly. It's actually probably a bad and weird question anyway. I appreciate the help though
For example Let's say the set of integers is from some function( not random anymore) [itex]\sum \limits_{i=1}^n A[i] (A[i]\mod{2})[/itex] is only adding odd terms but the equation is not reducible, so I was hoping the % could be expressed differently so I could solve or reduce the problem. If finding the number was odd or mod or % 2 was rewritable as a function or riemann sum, then I could reduce or solve the problem. |
| Sep18-12, 01:00 AM | #6 |
|
|
|
| Sep18-12, 06:45 AM | #7 |
|
|
|
| Sep18-12, 10:52 AM | #8 |
|
|
##\frac{1 - (-1)^n}{2}## |
| Sep18-12, 11:20 AM | #9 |
|
|
[itex]\sum n(\frac{1 - (-1)^n}{2})[/itex] where n is a positive integer |
| Sep18-12, 12:51 PM | #10 |
|
|
Ya that works, thanks guys. Sorry about the poor wording. I used that equation daily in my fourier series class, I'm surprised I forgot about that after one summer.
|
| Sep18-12, 01:02 PM | #11 |
|
Blog Entries: 2
|
[itex]\sum \limits_{i=1}^n A[i]\mod{2}) = n [/itex] so n odd numbers will give an even number if n is even and an odd number if n is odd. There is no need to use more complex functions. |
| Sep18-12, 01:54 PM | #12 |
|
|
##A = (1,2,3,5,7,8,10)##, he wants an expression which evaluates 1+3+5+7. |
| Sep18-12, 02:44 PM | #13 |
|
|
x = [itex]\displaystyle \sum_{k=1}^n a_ksin^2(a_k\pi) [/itex] If ak is even, sin(ak[itex]\pi[/itex]) is 0; and if it's odd, sin(ak[itex]\pi[/itex]) is +/- 1. |
| Sep25-12, 08:48 AM | #14 |
|
|
Hmm, this looks neat, so you are going to add all the odd terms in f(x)? So you need, as a function, [itex]\displaystyle \sum_{x=a}^n f(x)\frac{1-(-1)^{f(x)}}{2}[/itex]. That looks like a really cool and useful function! I have literally filled notebooks finding sums like that, so I have a huge collection, but I've never used a power of f(x) for anything other than f(x)=c or f(x)=x. Do you mind if I play with this? The most that I can simplify this too, without any extra exploration is:
[itex]\displaystyle \sum_{x=a}^n f(x)\frac{1-(-1)^{f(x)}}{2} = \sum_{x=a}^n \frac{f(x)}{2}-\sum_{x=a}^n f(x)\frac{(-1)^{f(x)}}{2}[/itex] For my own purposes, I will want to look at x=0, specifically. If I want to look at specific parts of (f(x), I will use f(x-c). EDIT: I realised after working through this a bit that I forgot to multiply by f(x). The formulas above are corrected (I hope). However, I do have a list of solutions that relate to the correct version (where f(x)=xa for some non-negative integer a). Typically, the first part of that sum would be calculated with the Hurwitz Zeta function and the Riemann Zeta function (though I have a different way that I prefer). The second part, I believe, can be similarly computed. For cases where f(x) is a polynomial, this should not be difficult to compute, especially as it can be expressed as a linear combination of cnxn |
| New Reply |
Similar discussions for: Finding if an integer is odd through Riemann or some function?
|
||||
| Thread | Forum | Replies | ||
| Floor Function (Greatest Integer Function) Identity | Calculus & Beyond Homework | 1 | ||
| Is there any good reference on Riemann Surface and Riemann Theta Function? | Differential Geometry | 2 | ||
| Finding limit- greatest integer function | Calculus | 2 | ||
| finding an integer with matlab fft function | Math & Science Software | 8 | ||
| finding an integer with matlab fft function | Math & Science Software | 0 | ||