Why is square root not following square properties?
조회 수: 2 (최근 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
댓글 수: 0
채택된 답변
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 Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!