• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

What does this simplify to?

(sq.rt (2 - sq.rt(2))) * (sq.rt (2 + sq.rt(2)))

I keep getting, 2 + sq.rt (2). But that is the wrong answer 🙁 This was part of a question on the test I just failed 🙁
-- mrcodedude
 
Bump. I think everyone failed the test, there was an easier way to forget the answer but I forgot the other formula. I wasn't 100% sure whether or not it was correct.
-- mrcodedude
 
Originally posted by: Ranger X
sqrt of 2
I wish I knew that on the test 🙁! No calculators were allowed or else I would have been able to determine the decimal. 🙁 Thanks though 🙂
-- mrcodedude
 
(a-b) * (a+b) = a^2 - b^2

so, let a = 2, b = sqrt(2)

then, 2^2 - sqrt(2)^2

= 4 - 2

= 2

And since it's the sqrt of it, it's sqrt 2.
 
its a simple difference of squares

remove the sq.rt.s for a second

2-sq.2 * 2+sq.2
thats 4 - sq.2^2
which is 4-2
which is just 2

now put back the sq.rt and you have sq.rt of 2!!

~Aunix
 
Back
Top