Why is square root not following square properties?

5 次查看(过去 30 天)
Hello,
When I run this segment of code. The two different ways of writing the square roots don't equal (this can obviously vary with the random values in matrix "a").
a = rand(4);
sqrt(5)./sqrt(a)==sqrt(5./a)
ans =
0 1 0 1
1 0 0 0
0 1 0 1
1 0 1 1
As far as I know, this property of square roots should be valid, however it seems to not be giving an answer consistent with my understanding.
Any help would be greatly appreciated

采纳的回答

Image Analyst
Image Analyst 2014-7-11
I think because they're computed in different ways, the expressions on each side are different from each other way out in the 7th or 8th decimal place. To understand this you should read the FAQ: http://matlab.wikia.com/wiki/FAQ#Why_is_0.3_-_0.2_-_0.1_.28or_similar.29_not_equal_to_zero.3F Some of them might match exactly and those locations give a 1 but where they don't exactly match all the way out to the last decimal place, those locations will be a 0, indicating "no equality".

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by