BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SAS1ns1ghts
Calcite | Level 5

Consider the following code.  a = b and yet SAS determines that a < b.  Why?

 

data x;
a = 11*10;
b = (11/10)*100;
if a = b then put 'equal';
if a > b then put 'greater';
if a < b then put 'less';
output;
run;

 

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

Do a google search for "sas numeric precision", and you will find the answer.

 

In short: decimal fractions cannot be exactly represented as binary data, so you introduce minimal aberrations during the calculation. When testing for equality, always use the ROUND() function before you compare.

 

BTW 11/10 can't even be represented exactly as a decimal value, as it resolves to 1.1 periodic.

View solution in original post

3 REPLIES 3
Kurt_Bremser
Super User

Do a google search for "sas numeric precision", and you will find the answer.

 

In short: decimal fractions cannot be exactly represented as binary data, so you introduce minimal aberrations during the calculation. When testing for equality, always use the ROUND() function before you compare.

 

BTW 11/10 can't even be represented exactly as a decimal value, as it resolves to 1.1 periodic.

Reeza
Super User
Computers cannot store numbers exactly.
Almost all software applications can generate such an error.

https://documentation.sas.com/?cdcId=pgmsascdc&cdcVersion=9.4_3.5&docsetId=lrcon&docsetTarget=p0ji1u...
FreelanceReinh
Jade | Level 19

Hello @SAS1ns1ghts,

 

See this 2020 post for a detailed explanation why for SAS (under Windows) 0.07*100>7 (!). Your example, 1.1*100>110, is quite similar. The length of the period in the binary (periodic) fraction representing the decimal fraction 1.1 is 4, not 20 as in the case of 0.07, but the basic pattern is the same: a periodic fraction is rounded internally and the rounding error propagates in calculations.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 610 views
  • 0 likes
  • 4 in conversation