HOW CAN I SOLVE THIS?

조회 수: 1 (최근 30일)
kevin liu
kevin liu 2021년 3월 6일
편집: Jan 2021년 3월 9일
  댓글 수: 2
Jan
Jan 2021년 3월 6일
This is a homework question. So please post, what you have tried so far and ask a specific question about Matlab.
kevin liu
kevin liu 2021년 3월 6일
x=1;
while(1<1+x)
x=x*0.5; %using bisection method
while(1/x*x~=1)
x
continue;
end
end
but after running it, i got nothing...

댓글을 달려면 로그인하십시오.

답변 (1개)

Jan
Jan 2021년 3월 7일
What are the possible numbers in IEEE 754 floating point values between 1.0 and 2.0?
x = 1.0 + k * 2^-52 with k = 0, 1, ... 2^52
Run a loop over k to find a value with x * (1 / x) ~= 1.
  댓글 수: 9
kevin liu
kevin liu 2021년 3월 9일
oh i see......
Thank you so much~~~
but I have a question, how to avoid such errors in computer (x*(1/x))=!1?
Jan
Jan 2021년 3월 9일
편집: Jan 2021년 3월 9일
This is not an error. Computers store numbers with a limited precision. This has effects on arithmetics when using them. Famous examples:
0.1 + 0.1 + 0.1 == 0.3 % FALSE
any((0:0.1:1) == 0.3) % FALSE
1e17 + 1 - 1e17 == 1 % FALSE, it is 0
1e17 - 1e17 + 1 == 1 % TRUE
Welcome to the world of numerical maths. The first chapters of text books for this field of science explain the effects and teach methods to cope with them.
The alternativ is to use symbolic maths or numbers with unlimited precision. The later will exhaust the memory as soon as an irrational number is used, because you need an infinite amout of RAM to store it.
When I started to study, the loop took 1 day to find the first match of 1 * (1/x) ~= 1. Now Matlab takes seconds only. Running the full range over 2^52 elements will still take far too long. You can determine the concerned numbers by a formula also, but it is not trivial.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by