When ever you write a number, ANY number, it is short hand notation for 1(x) == x ie one lot of that number
1+2=3 == 1(1) + 1(2) = 1(3)
one one plus one two equals one three.
Which is NOT the same as saying
1*1 + 1*2 + 1*3
one times one plus one times 2 plus 1 times three
For instance, in spoken language you would say 'I have one fish' or 'I have three fish' NOT 'I have one times a fish' or 'I have three times a fish'
When ever you write a number, ANY number, it is short hand notation for 1(x) ie one lot of that number
1+2=3 == 1(1) + 1(2) = 1(3)
one one plus one two equals one three.
Which is NOT the same as saying
1*1 + 1*2 + 1*3
one times one plus one times 2 plus 1 times three
For instance, in spoken language you would say 'I have one fish' or 'I have three fish' NOT 'I have one times a fish' or 'I have three times a fish'
(a) (n + 1)² = n² + 2n + 1
(b) (n + 1)² - (2n + 1) = n²
(c) Subtracting n(2n + 1) from both sides and factoring, we have
(d) (n + 1)² - (n + 1)(2n + 1) = n² - n(2n +1)
(e) Adding ¼(2n + 1)² to both sides of (d) yields
(n + 1)² - (n + 1)(2n + 1) + ¼(2n + 1)² = n² - n(2n + 1) + ¼(2n + 1)²
This may be written:
(f) [(n + 1) - ½(2n + 1)]² = [(n - ½(2n + 1)]²
Taking square roots of both sides,
(g) n + 1 - ½(2n + 1) = n - ½(2n + 1)
and, therefore,
(h) n = n + 1
When ever you write a number, ANY number, it is short hand notation for 1(x) ie one lot of that number
1+2=3 == 1(1) + 1(2) = 1(3)
one one plus one two equals one three.
Which is NOT the same as saying
1*1 + 1*2 + 1*3
one times one plus one times 2 plus 1 times three
For instance, in spoken language you would say 'I have one fish' or 'I have three fish' NOT 'I have one times a fish' or 'I have three times a fish'
1+2=3 == 1(1) + 1(2) = 1(3)
one one plus one two equals one three.
This is the correct. It is called the standard order of operations.I've always been taught - and always used in programming, that you work from left to right but do the brackets first - anything inside brackets is also done left to right.
If you stick it into any programming language you will get 9.
(I haven't bothered to read every post in this thread so someone might have already covered this).
I've always been taught - and always used in programming, that you work from left to right but do the brackets first - anything inside brackets is also done left to right.
If you stick it into any programming language you will get 9.
(I haven't bothered to read every post in this thread so someone might have already covered this).
Ambiguous question is ambiguous...
Just goes to show the need for clear brackets when entering an eqn into a comp, whoever writes such an ambiguous eqn is asking for trouble!
Someone posted this a few pages back.
![]()
You'd always enter AB or A(B+C) as A*B or A*(B+C) into a programming language, there is no ambiguity as to how 6/2(1+2) would be entered into a programming language either.
I'd say 1, and I've done a lot of maths in my time.
However, the question is ambiguously written, and it doesn't help that it's all on one line so there's no way of discerning what actually belongs where. The argument is basically whether the question is:
(6/2)*(1+2)
which gives 9
or
6
_____
2(1+2)
which gives 1.
Without seeing it written properly one way or another, it's impossible to tell really. The stupid thing is that one way or another the question assumes that people are comfortable with the idea that adjacent items in a sum are multiplied together, regardless of whether a multiplication sign is present or not, which I think plenty of people will have trouble with.
However, having solved more equations than I care to recall, if I personally were writing that one line, then I would get to 1.
If you was buying packets of fish (just because you used fishlol) which came in packs of 3, and you wanted to buy, say, 100 packets. You wouldn't sit there and say:
1*3 + 1*3 + 1*3 +.....
you would do 100*3
which is essentially (1+1+1+1......)*3
Yes but its still semantically a question of whether you are buying 100 singular packets of fish or 1 quantity of a unit comprised of 100 packets of fish.
The 100 singular fish CAN be broken down into smaller units(lower order), but the 1 100 fish CAN NOT be broken down into smaller units.(higher order)
Imagine if packs of fish were offered up as 1, 3 or 10, and you want 7 fish. You cannot get 2 and a third lots of the 3 pack, you HAVE to get 2 3 packs and 1 1 pack. The packet sizes are implicitly defined single unit sizes that consist of a specific amount of content.
I've always been taught - and always used in programming, that you work from left to right but do the brackets first - anything inside brackets is also done left to right.
If you stick it into any programming language you will get 9.
(I haven't bothered to read every post in this thread so someone might have already covered this).
To all those who say it's 9 and don't understand that it can be either 1 or 9 because the of the way it's written, you are all WRONG.
6/2(1+2) is confusing but isn't actually ambiguous - the divisor is just '2' - that is how the '/' symbol is used - there is one answer and that is 9