Recent comments in /f/explainlikeimfive
Ikhtionikos t1_iycazgz wrote
Many basic misconceptions regarding multiplications can be dispelled if you just remember that multiplication is a type of addition, written in shorter form.
If you have 1+2×3, you don't have one plus two, followed by times-three, but, broken down, you have one, plus three times two (or two times three)
Thus, 1+2×3=1+2+2+2 -how many times you have the number two? Three times. Or, 1+2×3=1+3+3. -how many times you have the number three? Two times. Both sets of addititon thus equal 7.
For the same reason, you can't "multiply" irl an actual object or set of nultiple ojects by zero, because in that case your definition is erroneous.
Kalirren t1_iycayo7 wrote
Reply to comment by SirX86 in ELI5 why we first multiply, then add by TheManNamedPeterPan
And the answer to the "why" is because exponentiation distributes over multiplication, and not the other way around, just like multiplication distributes over addition.
xy^(2) = x*(y^2) = x*y^2 != (x*y)^2 = (xy)^(2) = x^(2)y^(2)
x*(y^2) != (x*y) ^ (x*2)
ghidfg t1_iycap8l wrote
Reply to comment by PersephoneisHalfHell in ELI5- Why is it gross to pee in the shower? by [deleted]
well it is human waste
RealUglyMF t1_iycap57 wrote
Reply to Eli5 dying in your sleep by Twilton26
I doubt anyone is able to fully answer this as everyone who has done it so far hasn't survived to tell the story.
I imagine that it would vary from case to case depending on the actual cause of death, but I believe that passing peacefully while sleeping is definitely something that can happen
overlordpotatoe t1_iycaner wrote
Reply to comment by [deleted] in ELI5- Why is it gross to pee in the shower? by [deleted]
Urine has nothing to do with the growth of foot fungus.
[deleted] t1_iycan65 wrote
[deleted] t1_iycalhp wrote
Reply to comment by OldHellaGnarGnar2 in ELI5: why is using "goto" considered to be a bad practice in programming? by Dacadey
[deleted]
overlordpotatoe t1_iycaiu1 wrote
Reply to comment by [deleted] in ELI5- Why is it gross to pee in the shower? by [deleted]
Wouldn't the running water from the shower do the same thing?
overlordpotatoe t1_iycaexg wrote
Reply to comment by Carlcarl1984 in ELI5- Why is it gross to pee in the shower? by [deleted]
If it's splashing there, all the other water is too, so it would quickly get rinsed.
JeffSergeant t1_iycadzz wrote
Reply to comment by Sloloem in ELI5: why is using "goto" considered to be a bad practice in programming? by Dacadey
This. But also the risk of velociraptors
Symbian_Curator t1_iycacc6 wrote
Reply to comment by Sloloem in ELI5: why is using "goto" considered to be a bad practice in programming? by Dacadey
I just want to point out, GOTO is not completely pointless, but the industry is used to repeating how GOTO is terrible without thinking much about the reasons, the reasons being as you pointed out, but also, valid uses for GOTO are so few and far between that it's just easier to teach new programmers to simply never use it.
About those valid uses:
- In C, to mimic the destructor behaviour of C++ in function. For example, let's say that in function F you have: initialize resource A, initialize resource B, initialize resource C, do some work, clean u C, clean up B, clean up A. Then, in the code, you would try to init A, and if it works, carry on, but if not, exit the function. Try to init B, and if it works, carry on, but if not, GOTO "clean up A" part. Try to init C, and if it works, carry on, but if not, GOTO "clean up B" part. When you GOTO like this, the code "falls through" to clean up only the resources which were initialized. I was told that this technique is used widely in the code of the Linux kernel, but honestly I haven't bothered to check myself.
- With some compiler extensions, computed GOTOs (where you can take the address of a GOTO label, put it in a lookup table, and jump based on some index) present a optimization opportunity for performance critical code, notably interpreters for other languages or bytecode of other languages. (it's similar to switch/case, just faster)
Objective_Suspect122 t1_iycaa0z wrote
It s just the writing convention so that the other party does the calculation correctly.
Usually the writer of the operation should place parentheses between the numbers but they don't always do that.
[deleted] OP t1_iyca9ah wrote
Reply to ELI5- Why is it gross to pee in the shower? by [deleted]
[deleted]
SargeMaximus OP t1_iyca5fm wrote
Reply to eli5: Why do songs get stuck in your head even if you haven’t listened to them recently? by SargeMaximus
SS: it’s 2:25am and I have a song stuck in my head that I haven’t heard in a few days. Why?
bildramer t1_iyca5ey wrote
Reply to comment by DragonFireCK in ELI5 why we first multiply, then add by TheManNamedPeterPan
Fun fact: (with some assumptions about operators) only one of the cyclic permutations of a RPN (or PN) string is valid, so you can be sneaky and define the value of any string as the value of the only parsable-as-RPN cyclic permutation of it, leading to funny stuff like 1 + 2 - 3 = 2, 5 * 6 - 7 + 8 * 9 = 368. Another fun fact: all strings with N numbers and N-1 binary operators are valid under that scheme, such as - + 8 7 * 6 5 * * 4 3 = 169. Proofs are an exercise to the reader.
[deleted] t1_iyca19m wrote
Reply to comment by Sloloem in ELI5: why is using "goto" considered to be a bad practice in programming? by Dacadey
[removed]
BoredGeek1996 t1_iyca08h wrote
Reply to ELI5- Why is it gross to pee in the shower? by [deleted]
I used to do this a lot until I realised that the water may not clean out the urine thoroughly so I started using the toilet.
Gewt92 t1_iyc9w01 wrote
Reply to comment by [deleted] in ELI5- Why is it gross to pee in the shower? by [deleted]
That’s not how any of this works.
ComradeMicha t1_iyc9nc0 wrote
Reply to comment by HarveyH43 in ELI5 How is sitting for prolonged durations (<1hour) bad for your body? by [deleted]
Yeah, same here. Prolonged durations shorter than one hour are bad?
Carlcarl1984 t1_iyc9m7e wrote
Reply to ELI5- Why is it gross to pee in the shower? by [deleted]
Pee is splashing on the shower floor and drops may go anywhere, so at the end you may end up with piss in your shower walls / curtains.
Note: I just realized my English vocabulary is quite limited on bathroom items
Kalirren t1_iyc9jnx wrote
Reply to comment by RJC024 in ELI5 why we first multiply, then add by TheManNamedPeterPan
Nope. Subtraction is adding the additive inverse and doesn't distribute over multiplication. The reason why we have PEMA is because Exponentiation distributes over Multiplication and Multiplication distributes over Addition and Parentheses break those rules so you have to do the Parentheses first.
[deleted] OP t1_iyc9jle wrote
Reply to ELI5- Why is it gross to pee in the shower? by [deleted]
[deleted]
57oranges t1_iyc9je3 wrote
Reply to ELI5- Why is it gross to pee in the shower? by [deleted]
Maybe the folks who go on about it being so gross have partially clogged drains and they're standing in a puddle
[deleted] OP t1_iyc9dvl wrote
Reply to ELI5- Why is it gross to pee in the shower? by [deleted]
[removed]
Flair_Helper t1_iycb2w2 wrote
Reply to ELI5- Why is it gross to pee in the shower? by [deleted]
Please read this entire message
Your submission has been removed for the following reason(s):
Questions about a business or a group's motivation are not allowed on ELI5. These are usually either straightforward, or known only to the organisations involved, leading to speculation (Rule 2).
If you would like this removal reviewed, please read the detailed rules first. If you believe this submission was removed erroneously, please use this form and we will review your submission.