155 Replies - 13356 Views - Last Post: 04 May 2009 - 08:17 PM
#5
Re: Calculate this~!
Posted 22 December 2008 - 04:14 PM
I might do the "other" solution. An OR of 1 and 15 should give the same result. That's originally why I calculated out 15 in binary.
#6
Re: Calculate this~!
Posted 22 December 2008 - 04:18 PM
I wrote that in C++ and I got a different result. [Told you, you can write your own in the language to test it, just not to find the answer of someone else's]
HINT: The answer is on that sheet. Somewhere. I think you've really overcomplicated it.
#7
Re: Calculate this~!
Posted 22 December 2008 - 04:24 PM
How did you shift a mixed number? in your head or on paper?
30/4 = 7.5
1 << 7.5?
This post has been edited by KYA: 22 December 2008 - 04:25 PM
#8
Re: Calculate this~!
Posted 22 December 2008 - 04:29 PM
((10*3)/4)) * 2)
#9
Re: Calculate this~!
Posted 22 December 2008 - 04:30 PM
() Takes precedent other then socpe resolution
I think writing a program is cheating. You should have to do it in your head/on paper like the OP says.
Anyways:
(((1 << ((10*3)/4)) * 2) - (32*2)) / 192
1<< 7.5 is really 1 << 7, so 128 * 2 = 256
-64 = 192
192/192
=1 <- Answer
This post has been edited by KYA: 22 December 2008 - 04:32 PM
#10
Re: Calculate this~!
Posted 22 December 2008 - 04:34 PM
I apologise for getting it wrong in the first place. I'm tired.
That's my excuse and I'm sticking to it.
Essentially, I was right. I just read my own problem incorrectly.
I suck.
#11
Re: Calculate this~!
Posted 22 December 2008 - 04:36 PM

Even not using integers it won't do half a bit
#12
Re: Calculate this~!
Posted 22 December 2008 - 05:05 PM
File's attached. Paint was being retarded. It's a series.
Attached File(s)
-
dic_math_problem__series_.doc (17K)
Number of downloads: 169
#13
Re: Calculate this~!
Posted 22 December 2008 - 06:28 PM
the
is that right?
#14
Re: Calculate this~!
Posted 22 December 2008 - 06:31 PM
Anyway:
E (n = 0 to 5)
((n+1)^n)/n!
This post has been edited by KYA: 22 December 2008 - 06:39 PM
#15
Re: Calculate this~!
Posted 22 December 2008 - 06:45 PM
I forgot anything with series about 2 years ago, so this is the answer I got:
14041/120
This post has been edited by GWatt: 22 December 2008 - 07:01 PM
#16
Re: Calculate this~!
Posted 22 December 2008 - 07:49 PM
It's been a while since I've dealt wit the rules of summations...but can you do 0!?
I don't recall...
This post has been edited by Locke37: 22 December 2008 - 07:50 PM
#17
Re: Calculate this~!
Posted 22 December 2008 - 08:27 PM
#18
Re: Calculate this~!
Posted 22 December 2008 - 08:36 PM
Locke37, on 22 Dec, 2008 - 06:49 PM, said:
It's been a while since I've dealt wit the rules of summations...but can you do 0!?
I don't recall...
~~It somehow works its way into equaling "1". Heres why:
If n! is defined as the product of all positive integers from 1 to n, then:
1! = 1*1 = 1
2! = 1*2 = 2
3! = 1*2*3 = 6
4! = 1*2*3*4 = 24
...
n! = 1*2*3*...*(n-2)*(n-1)*n
and so on.
Logically, n! can also be expressed n*(n-1)!...
Therefore, at n=1, using n! = n*(n-1)!
1! = 1*0!
because anything multiplied by 0!=0!
it simplifies to
1=0!
and 0!=1
OK?
This post has been edited by rdsrds2120: 22 December 2008 - 08:38 PM
#19
Re: Calculate this~!
Posted 22 December 2008 - 09:27 PM
The correct answer is: 13081/120 or ~109.008
Gwatt the estimate of your answer is ~117
rdsrds2120 said 108.9, so he wins I guess
nobody got it exact
Let me work out the first two factorials:
1! = 1 * 0! = 1*1 = 1
0! = 1 //There's a proof of this, but I don't feel like typing it
This post has been edited by KYA: 22 December 2008 - 09:29 PM

New Topic/Question

MultiQuote






|