Tagged Questions
The proofs tag has no wiki summary.
16
votes
4answers
620 views
Why is (a | b ) equivalent to a - (a & b) + b?
I was looking for a way to do a BITOR() with an Oracle database and came across a suggestion to just use BITAND() instead, replacing BITOR(a,b) with a + b - BITAND(a,b).
I tested it by hand a few ...
2
votes
2answers
117 views
Proving some monad laws on an error monad I wrote
So I whipped up a custom error monad and I was wondering how I would go about proving a few monad laws for it. If anyone is willing to take the time to help me out it would be much appreciated. ...
2
votes
3answers
340 views
Prove that n! is not in O(n^p) for any constant natural number p
How can I prove that n! is not in O(n^p) for any constant natural number p?
And is (n k)(n choose k) in O(n^p), for all k?
1
vote
1answer
850 views
Proving Big-Theta notation
Hello I've tried my best to understand big-theta and now I get the main conception of the proofs for Big-Oh and Big-Omega but i couldn't find and example that is close to my excercise, because i cant ...