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.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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