Get Your Questions Answered

Please Login/Register to add or comment on questions.

I keep chanting BIDMAS like it’s a spell, but the middle bit is melting my brain. If D stands for Division and M for Multiplication, does that mean division “wins”? Or are they actually the same level and I should march left-to-right after brackets and indices? I get tangled on things like 12 ÷ 3 × 2 versus 12 ÷ (3 × 2). When there aren’t any extra brackets, how am I supposed to read it so I don’t invent a new number system by accident?

Bonus burr in my sock: expressions like 8/2(2+2). My brain happily does the brackets, then stares at the slash and the sneaky multiplication holding hands, and suddenly the whole thing feels like a logic seesaw. I’ve heard some people treat “implicit multiplication” (like 2(…)) as tighter than division, while others say multiplication and division are equals that go left-to-right. How do you decide what’s intended, and what’s a safe way to rewrite these so they’re unambiguous? Any tips or rules of thumb to keep my notebook from turning into a scribbly crime scene would be amazing.

I’m prepping for a test and I’m stuck: with class intervals of different widths, how do I set the bar heights so the areas tell the story-do I use frequency density or something else? I tried dividing each frequency by its class width, but I’m not sure that’s actually relevant.

I keep tripping over the sine rule when I’m solving for an angle. For example, I had a triangle with A = 30°, a = 7 (opposite A), and b = 10. Using the sine rule I got sin B = 10 * sin 30° / 7 ≈ 0.714…, so my calculator spits out B ≈ 45.6°. But then my teacher said B could also be 180° − 45.6° ≈ 134.4°, and now I’m second-guessing myself every time. I get especially lost when the diagram isn’t to scale, because I pick the wrong one and only realize later that the sides don’t make sense.

Is there a clean way to tell, just from the numbers, whether I should take the acute angle, the obtuse one, or consider both? Like a quick checklist for when there are 0, 1, or 2 possible triangles with the sine rule (that “ambiguous case” thing). And if both angles seem possible, how do you decide which one actually matches the given triangle without redrawing it ten times? I feel like I’m overthinking this!

I keep messing up series whenever the sigma doesn’t start at 0. My brain loves off-by-one errors.

Example: I want S = sum_{k=1}^n 3^k. I know the geometric sum formula (r^{n+1}-1)/(r-1) when it starts at k=0. I lazily plugged r=3 and got (3^{n+1}-1)/2. For n=3, that gives (81-1)/2 = 40, but the actual sum 3+9+27 is 39. So I’m off by 1. I then “fixed” it by subtracting the k=0 term (which is 1): (3^{n+1}-1)/2 – 1 = (3^{n+1}-3)/2, which does give 39 for n=3. That feels like a hack, not a rule I can trust.

I also tried reindexing: let j = k-1, so sum_{k=1}^n 3^k turns into sum_{j=0}^{n-1} 3^{j+1}. But then I get tangled: do I pull out a factor of 3 or adjust the top to n or n-1? I keep second-guessing which exponent or bound to shift.

Same headache with arithmetic sums. For example, sum_{k=2}^5 2k should be 4+6+8+10=28. One attempt: count 4 terms and do 2*(1+2+3+4)=20 (wrong). Another attempt that worked: 2*((1+2+3+4+5) – 1) = 2*(15-1) = 28. It feels like I’m just guessing which chunk to subtract.

Is there a simple rule-of-thumb for reindexing and adjusting bounds so I stop being off by one? Like a quick checklist: how to shift the index, how to count terms, and when to subtract the missing start term(s). A plain, no-nonsense method I can do in my head would be ideal, with a tiny-number sanity check to avoid dumb mistakes.

I’m trying to mix a very particular purple for an art project, and my brain keeps doing somersaults over proportions. The guide says the color I like is 2 parts red to 5 parts blue. I’ve got exactly 350 ml of blue ready to go. I did this: red/blue = 2/5, so red = (2/5) * 350 = 140 ml. That feels right, but I’m second-guessing myself because sometimes I see people use parts of the total instead, like red = (2/7) * total. Are those two ways the same here, or am I mixing metaphors with my paint? Could someone explain which interpretation is correct and why? Also, follow-up: if I accidentally glug an extra 60 ml of red into the bucket (classic me), what would be the new red:blue ratio, and is there a clean proportional way to fix it by adding more blue instead of starting over? I keep tying myself in knots about whether to scale from the part I have or the total I want.

I’m preparing for a test and I keep getting lost on rotations about the origin-if (3, 1) becomes (-1, 3), how do I decide the angle and direction cleanly; I tried writing the matrix [[0,-1],[1,0]] but I’m not sure that’s even relevant or if I’m approaching this the wrong way.

I’m practicing solving systems by substitution and I keep getting tangled when there are fractions and negatives. For example, if I have y = (2x − 5)/3 and 4y − x = 7, should I multiply the second equation by 3 first to clear the denominator, or substitute (2x − 5)/3 for y right away and then simplify? I swear I get different answers depending on what I do first, which probably means I’m messing up parentheses or signs somewhere. What’s the cleanest order of steps here, and any tips for keeping the negative signs and brackets under control so I don’t keep tripping over them?

I biked 6 km to the library at 24 km/h, then pedaled back the same 6 km against a grumpy headwind at 12 km/h. My brain cheerfully said, “Average the speeds: (24 + 12) / 2 = 18 km/h!” But when I look at how long the whole round trip actually took me, that neat average seems to be lying through its mathematical teeth. I know average speed is supposed to be total distance divided by total time, but I get tangled when the speeds are different in each direction.

What really trips me up is when the problem changes from equal distances to equal times. Like, if I run for 10 minutes at one speed and then 10 minutes at another, my instinct is to average the speeds again, but I suspect there’s a sneaky catch. How do I set these up so I don’t fall into the wrong-average trap?

Could someone show me a clean way to think about these speed–distance–time puzzles-especially how to decide what to add and what to divide-and maybe a tiny checklist for unit conversions (minutes vs hours) so I don’t turn my bike ride into a unit soup?

I’m comfortable completing the square when the x^2 coefficient is 1, but I get mixed up when there’s a number in front. For example, trying to write 2x^2 + 8x + 5 in vertex form: I factor 2 to get 2(x^2 + 4x) + 5. Then I add 4 inside to make a square. What I don’t trust is how to adjust the constant outside so the expression stays the same. Do I subtract 4 or 8, and why?

Similar issue with 3x^2 – 12x + 7: factoring gives 3(x^2 – 4x) + 7, then I want to add 4 inside. Some solutions seem to subtract 12 outside, others add and subtract 4 inside the parentheses and then distribute later. I’m not seeing a consistent rule, and I lose track of the bookkeeping.

Is there a clean, general way to think about the compensation step when the leading coefficient is not 1, especially when b is odd and fractions show up? A short checklist or a small worked example that highlights the exact quantity to add or subtract would help me fix the habit.

I’m fine with basic rearrangements like turning y = ax + b into x = (y – b)/a. I get confused when the variable I want to make the subject shows up both in the numerator and the denominator, and I’m not sure how to treat steps that involve multiplying or dividing by expressions that might be zero. For example, if I try to make x the subject in y = (ax + b)/(cx + d), I can rearrange to something like x(yc – a) = b – yd. At that point, do I have to split into cases for yc – a = 0, and how do I keep track of the original condition cx + d ≠ 0 while still aiming for an equivalent formula for x?

I hit the same issue with T = L/(1 – rL) when solving for L. Multiplying by (1 – rL) seems to assume it’s nonzero, but that’s also a domain restriction of the original equation. Later I want to divide by something like (1 + Tr). Is there a clean checklist for carrying domain restrictions through these steps so the final formula is genuinely equivalent? A brief outline using either example would help me see the logic.

I keep tripping over percentage increases when there are multiple steps. For example, if an item is $120, I increase it by 25% and then take 10% off the new price. My instinct is to do 25% − 10% = 15% overall, but when I actually calculate the numbers (add 25%, then remove 10%), the final price doesn’t match a simple 15% increase on the original. I can see the mismatch in the arithmetic, but I don’t understand the deeper reason why adding and subtracting the percentages like that isn’t valid.

Could someone walk me through the right way to combine percentage changes step by step, and how to turn a two-step change into one equivalent percentage? Also, how do I reverse it: if I only know the final price and the percentage steps used, how can I get back to the original price? As another checkpoint, what should happen with something like “increase by 20% then increase by 30%”-is that the same as a 50% increase, or not? I’d really appreciate a clear way to think about this so I stop making the same mistake.

I keep tripping over minus signs when I try to simplify expressions, especially when there are parentheses involved. Stuff like -2(3x – 4) + 5 – (x – 7) or 3(x – 2) – (4 – x) looks harmless, but I end up with different answers depending on the order I try things. I think I understand that a minus in front of parentheses should flip signs, but somewhere between distributing and combining like terms my brain short-circuits and I lose a negative. Classic me.

Is there a reliable way to approach these so I stop making sign mistakes? Do you usually distribute first, or simplify inside the parentheses first if possible? Does treating a lone minus as “multiply by -1” actually help in practice? Also, I get extra wobbly when fractions show up, like (1/2)(4x – 6) – (x/3 – 2). Any simple rules of thumb or a step-by-step “do this, then this” that I can stick to? And how do you know when you’re truly done simplifying and not missing a sneaky term? I’m probably overthinking this, but I’d love a sanity check.

I did a there-and-back bike trip to a bakery that’s 8 km away. Zoomed there with a friendly tailwind at 24 km/h, crawled back into a grumpy headwind at 12 km/h. I figured the overall average speed would just be (24 + 12)/2, but when I try that and then compare it to adding the time for each leg and doing total distance divided by total time, I get different results. My calculator is judging me, and my croissant is losing its flakiness while I stare at the numbers.

What’s the right way to set this up so I get the correct total time and average speed for the whole trip? Should I add the times for each leg first and only then do distance/time? Any tips for not tripping over hours vs minutes (and fractions vs decimals)? Also, if I took a 2 km detour on the way back, would the method change, or is there a neat general way to handle different speeds and different distances?

I’m struggling to spot when a situation is truly direct proportion. In exercises, cost vs kilos feels straightforward, but then they add a fixed delivery fee and I’m not sure if it still counts. Also, when units change (like cm to m), I get unsure what the constant k actually is and what units it should have. If a table gives pairs like (2 kg, $9) and (5 kg, $22.50), I try y/x, but if numbers are rounded the ratios aren’t exact, and then I’m not sure if it’s still “direct” or just noisy data.

What’s a clean checklist for deciding if it’s y = kx? Is “graph goes thru the origin” the main test, even with rounding? Any quick way to get k without messing up units? And in word problems, phrases like “varies directly with” vs “is proportional to” – are they the same thing? I’m probably overthinking, but I keep tripping on these lil gotchas. Any tips or simple examples to practise would help, thx.

I’m trying to wrap my head around percentage changes applied one after the other. If something goes up 25% and then down 25%, my gut says it should end up the same. But when I do a quick calc I get different results depending on how I think about it, and I can’t tell which step I’m messing up.

Say I start with x. After a 25% increase I have 1.25x. To undo that, my first thought was to take away 25% of that, so I wrote 1.25x − 0.25x = 1.0x (so, back to x). But if I instead multiply by 0.75 after the increase, I get 1.25x × 0.75, which isn’t x. Which approach is actually correct, and why do these two lines of thinking disagree? Is there a tidy rule for chaining percentage changes (like +a% then −b%) so I don’t keep tripping over this? Also, kinda related: if I only know the final price after, say, a 30% discount, what’s the clean way to get back to the original without guessing?

I’ve noticed that some people find percentages by multiplying by decimals (like 0.2 for 20%), while others do it using fractions or ratio steps.

For example, if I’m finding 15% of 80, one person says “multiply by 0.15”, another says “divide by 100 then multiply by 15”, and another just estimates it mentally.

Is there a “best” way to do it, or does it depend on the situation? I want to understand which method is most reliable.

I really enjoy algebra puzzles, but I keep running into the same issue — I can work through the setup fine, but when I reach the final step to isolate the variable, I always second-guess myself.

For example, if I end up with something like 3x – 8 = 10, I freeze and forget which way to move the numbers. I know it’s basic, but it’s becoming frustrating.

Does anyone have a simple trick or mental shortcut that helps with this?