I'm afraid it is you who are wrong, my friend. The scenario you describe is impossible, as both cakes and raw eggs are non-sentient, immobile objects without the ability to fight each other. Furthermore, since you are so interested in so-called purposes: It's neither the purpose of cake nor raw eggs to participate in fights, therefore the outcome of a so-called "fight" between the two is irrelevant to this discussion.Jewish Candy wrote:That's the best allegory I've ever heard for anything. What a shame it's wrong.Tobbe wrote:Good Sir, your argumentation is flawed. That's rather like saying that without raw eggs there wouldn't be any cake, therefore raw eggs own cake. Yet I am sure that we all agree that we would feel slightly disappointed when, come dessert, we were served raw eggs.![]()
Just because we like the taste of cake more than that of raw egg doesn't mean cake owns raw egg. The purpose of cake is to be eaten; the purpose of raw egg is to make up for the fact that it never became a chicken by existing. If the two were in a fight, the raw egg's insides would end up over the cake, rendering it inedible. Result - raw egg godpawns cake every time.
My head hurts.
The Math Help Topic
Forum rules
Please keep the forum rules and guidelines in mind when creating or replying to a topic.
Please keep the forum rules and guidelines in mind when creating or replying to a topic.
Re: The Math Help Topic
Re: The Math Help Topic
Yes I was, but it seems you leave me no choice...Jewish Candy wrote:I am nationless - and I likes it that way. Thanks for the offer thoughDesLife wrote:You should become French and rule the world with us.
EDIT: You're probably not talking to me. Sowwi.
Yup, but his powers will be mine.PluMGMK wrote:Yeah, but he does have more powers than English mods.DesLife wrote:(well Raylex's an exception) !
-
Jewish Candy

- Posts: 7031
- Joined: Fri Jun 18, 2010 2:13 pm
- Tings: 28664
Re: The Math Help Topic
No choice about... what...?DesLife wrote:Yes I was, but it seems you leave me no choice...Jewish Candy wrote:I am nationless - and I likes it that way. Thanks for the offer thoughDesLife wrote:You should become French and rule the world with us.
EDIT: You're probably not talking to me. Sowwi.
Re: The Math Help Topic
Physics studies a lot of very interesting concepts, to which maths is often applied; same goes for computer science, chemistry etc. Maths is the "root of awesome", if you will... now what is it based on? Pure human thought, power of the brain... Physics is too, but not quite as much, I believe.
-
PluMGMK

- Posts: 40514
- Joined: Fri Jul 31, 2009 9:00 pm
- Location: https://www.youtube.com/watch?v=cErgMJSgpv0
- Contact:
- Tings: 136636
Re: The Math Help Topic
When though?DesLife wrote:Yup, but his powers will be mine.PluMGMK wrote:Yeah, but he does have more powers than English mods.DesLife wrote:(well Raylex's an exception) !
Re: The Math Help Topic
You can't agree with this jerk! God dam' yal!Jewish Candy wrote:Agreed there.DesLife wrote:Because we're way awesomer (well Raylex's an exception) !
Re: The Math Help Topic
Of course they can.
Plum : soon.
Plum : soon.
-
Jewish Candy

- Posts: 7031
- Joined: Fri Jun 18, 2010 2:13 pm
- Tings: 28664
Re: The Math Help Topic
I was under the impression he was complimentin' ya.Raylex wrote:You can't agree with this jerk! God dam' yal!Jewish Candy wrote:Agreed there.DesLife wrote:Because we're way awesomer (well Raylex's an exception) !
Re: The Math Help Topic
Ahah I love teasing him. Yup, unfortunately, he's a global mod.Jewish Candy wrote:I was under the impression he was complimentin' ya.You're a global mod, right?
Re: The Math Help Topic
Yeah, I'm the bossJewish Candy wrote:I was under the impression he was complimentin' ya.Raylex wrote:You can't agree with this jerk! God dam' yal!Jewish Candy wrote:Agreed there.DesLife wrote:Because we're way awesomer (well Raylex's an exception) !
You're a global mod, right?
DesLife is just a Iznogoud-like idiot!
-
Jewish Candy

- Posts: 7031
- Joined: Fri Jun 18, 2010 2:13 pm
- Tings: 28664
Re: The Math Help Topic
Aww, harsh... still, if you're the boss you have a right to say whatever.Raylex wrote: Yeah, I'm the boss
DesLife is just a Iznogoud-like idiot!
Re: The Math Help Topic
Just you wait, you silly Caliph.Raylex wrote:Yeah, I'm the boss
DesLife is just a Iznogoud-like idiot!
-
PluMGMK

- Posts: 40514
- Joined: Fri Jul 31, 2009 9:00 pm
- Location: https://www.youtube.com/watch?v=cErgMJSgpv0
- Contact:
- Tings: 136636
Re: The Math Help Topic
Ah, but how soon is soon?DesLife wrote:Plum : soon.
Re: The Math Help Topic
Anyone good at biology here...?
Which of the following processes requires infolding (?) of the cell membrane?
1. Diffusion
2. Phagocytosis
3. Active Transport
4. Osmosis
Which of the following processes requires infolding (?) of the cell membrane?
1. Diffusion
2. Phagocytosis
3. Active Transport
4. Osmosis
-
Rayfist

- Posts: 12553
- Joined: Wed Jul 07, 2010 8:36 pm
- Location: Right here, right now!
- Tings: 176605
Re: The Math Help Topic
A topic for HOMEWORK HELP!? You guys are the coolest. I start school soon.
Re: The Math Help Topic
6 months.PluMGMK wrote:Ah, but how soon is soon?DesLife wrote:Plum : soon.
Instead of posting this in the You Game, because I'm sure no one is interested in this awesome convo, I suggest we continue here, mat.
Code: Select all
bool is_prime(int n)
{
int start = 5;
if (n==1) return false;
if (n<4) return true;
if (n%2==0) return false;
if (n<9) return true;
if (n%3==0) return false;
while (start <= sqrt((double)n))
{
if (n%start==0) return false;
if (n%(start+2)==0) return false;
start += 6;
}
return true;
}Re: The Math Help Topic
% stands for mod yeah.
(double)n is just a type conversion from an integer to a floating point number (so called "double"), because sqrt() doesn't take integers as arguments. It's a language technicality that has nothing to do with the problem itself...
I wonder if there's a more efficient way to do this..
btw orsum bump.
(double)n is just a type conversion from an integer to a floating point number (so called "double"), because sqrt() doesn't take integers as arguments. It's a language technicality that has nothing to do with the problem itself...
Yeah. I'm using the fact that all primes over 3 are of form 6k+1 or 6k-1.start +=6 means start:=start+6 I assume
I wonder if there's a more efficient way to do this..
btw orsum bump.
Re: The Math Help Topic
Ahahah that's stupid.Matyuv wrote:because sqrt() doesn't take integers as arguments.
I didn't know that ! Now this program makes perfect sense. And it seems good, but I'll do some research about such functions.Matyuv wrote:Yeah. I'm using the fact that all primes over 3 are of form 6k+1 or 6k-1.
I wonder if there's a more efficient way to do this...
Btw, what have you studied this year so far ?
Re: The Math Help Topic
Vector calculus, functions of a complex variable, complex integration, series, function series, binary relations, boolean algebgra, graph theory... That's it, I think. You?
Re: The Math Help Topic
Some new stuff about algebraic structures (like ideal rings), normed vector spaces, integration, series, function series, power series, diagonalisation and trigonalisation, Fourier series, multivariable calculus, pre-Hilbert spaces.




