Lemmy Shitpost
Welcome to Lemmy Shitpost. Here you can shitpost to your hearts content.
Anything and everything goes. Memes, Jokes, Vents and Banter. Though we still have to comply with lemmy.world instance rules. So behave!
Rules:
1. Be Respectful
Refrain from using harmful language pertaining to a protected characteristic: e.g. race, gender, sexuality, disability or religion.
Refrain from being argumentative when responding or commenting to posts/replies. Personal attacks are not welcome here.
...
2. No Illegal Content
Content that violates the law. Any post/comment found to be in breach of common law will be removed and given to the authorities if required.
That means:
-No promoting violence/threats against any individuals
-No CSA content or Revenge Porn
-No sharing private/personal information (Doxxing)
...
3. No Spam
Posting the same post, no matter the intent is against the rules.
-If you have posted content, please refrain from re-posting said content within this community.
-Do not spam posts with intent to harass, annoy, bully, advertise, scam or harm this community.
-No posting Scams/Advertisements/Phishing Links/IP Grabbers
-No Bots, Bots will be banned from the community.
...
4. No Porn/Explicit
Content
-Do not post explicit content. Lemmy.World is not the instance for NSFW content.
-Do not post Gore or Shock Content.
...
5. No Enciting Harassment,
Brigading, Doxxing or Witch Hunts
-Do not Brigade other Communities
-No calls to action against other communities/users within Lemmy or outside of Lemmy.
-No Witch Hunts against users/communities.
-No content that harasses members within or outside of the community.
...
6. NSFW should be behind NSFW tags.
-Content that is NSFW should be behind NSFW tags.
-Content that might be distressing should be kept behind NSFW tags.
...
If you see content that is a breach of the rules, please flag and report the comment and a moderator will take action where they can.
Also check out:
Partnered Communities:
1.Memes
10.LinuxMemes (Linux themed memes)
Reach out to
All communities included on the sidebar are to be made in compliance with the instance rules. Striker
view the rest of the comments
It is one though, you gotta do multiplication first
No. After you do the parentheses, multiplication and division are done left to right.
Yeah, gonna need to see a proof before I trust ANYONE on lemmy
https://en.wikipedia.org/wiki/Order_of_operations#Conventional_order
Multiplication and division are the same operation
6 * (1 / 2) = 6 / 2
Multiplication/division and addition/subtraction both happen left to right. They... Didn't teach you that in school?
It can be both depending on how you handle operator precendence.
PEMDAS definitely doesn't result in 1, but in 9, since under PEMDAS multiplication and division have the same priority (and thus should resolve left-to-right). So, you should resolve to 9 (6/2(2+1) => 6/2(3) => 6/2*3 => 3*3 => 9).
However, there's also PEJMDAS, which suggests that implied multiplication has an operator precedence greater than regular multiplication/division (J for Juxtaposition). This version says you should do 6/2(2+1) => 6/(2*2 + 2*1) => 6/(4+2) => 6/6 => 1.
The issue is that there is no universal agreement on which is correct. Most textbooks don't even use the / operator, but instead rely on writing out the full fraction like ⁶⁄₂₍₂₊₁₎ or ⁶⁄₂(2+1). This removes any ambiguity there might be, and thus they don't touch on which one is actually correct.
Most (but not all) calculators these days will treat implied multiplication the same as regular multiplication, so you get 9 in the given example. Most programming languages do the same, or outright disallow implied multiplication because it only confuses people. Academics won't ever use the ambiguous notation and will make sure to remove any ambiguity by either adding parentheses or using a notation like ⁶⁄₂₍₂₊₁₎, which makes things much more clear.
Neither 9 nor 1 is wrong, the question is just stupid.
Now do 2+2=5
No you don't, division is on the left, so it comes first
there's no way you're serious
:y
P/E/M(&)D/A(&)S
The precedences go like this:
parentheses > exponents > (multiplication = division) > (addition = substraction)
If you encounter operators with the same precedence (like multiplication and division) you go by the order they appear in the equation, left to right. That is how it works.
Yes. I am well aware. 6 ÷ 2 * (2+1) = (2+1) * 6 ÷ 2 = (6 * (2+1))÷2 = 6 * (2+1) ÷ 2
What he wanted to do is 6 ÷ (2 * (2+1))
But this just comes down to if you treat 2(2+1) as one or two expressions.
And honestly, i don't blame anyone for thinking one way or the other. Because i think most people understand that we wanted to write (2(2+1)), just that the overall parentheses is implied
Why i deleted that first comment within seconds was because i saw i had misread the meme as (6÷2)(2(2+1))