Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7622699
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T04:31:05+00:00 2026-05-31T04:31:05+00:00

Possible Duplicate: Double precision problems on .NET Double calculation producing odd result I know

  • 0

Possible Duplicate:
Double precision problems on .NET
Double calculation producing odd result

I know that internal represantation of double value 0.2 is something like 0.199999. But the following code still confuses me.

CODE:

public static void main(String[] args) {
    double d= 0.3d;
    double f= 0.1d;
    System.out.println(d+f);
    System.out.println(d*f);
    System.out.println(d);
    System.out.println(f);
    System.out.println(d-f);
    System.out.println(d/f);
    System.out.println((d-f)*(d-f));
}

OUTPUT:

0.4
0.03
0.3
0.1
0.19999999999999998
2.9999999999999996
0.039999999999999994

What is going on actually? Addition, multiplication goes well, but subtraction, division is not. Can anyone please elaborate why addition works different from subtraction ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T04:31:06+00:00Added an answer on May 31, 2026 at 4:31 am

    The short answer is you have a representation error and a rounding error for floating point operations. The toString() “knows” about the representation error so if there is no rounding error you don’t see it. But if the rounding error is too large, you do.

    The solution is to either use BigDecimal or round your result.


    If you use BigDecimal it will show the exact values you really have.

    double d = 0.3d;
    double f = 0.1d;
    System.out.println("d= " + new BigDecimal(d));
    System.out.println("f= " + new BigDecimal(f));
    System.out.println("d+f= " + new BigDecimal(d + f));
    System.out.println("0.4= " + new BigDecimal(0.4));
    System.out.println("d*f= " + new BigDecimal(d * f));
    System.out.println("0.03= " + new BigDecimal(0.03));
    System.out.println("d-f= " + new BigDecimal(d - f));
    System.out.println("0.2= " + new BigDecimal(0.2));
    System.out.println("d/f= " + new BigDecimal(d / f));
    System.out.println("(d-f)*(d-f)= " + new BigDecimal((d - f) * (d - f)));
    

    prints

    d= 0.299999999999999988897769753748434595763683319091796875
    f= 0.1000000000000000055511151231257827021181583404541015625
    d+f= 0.40000000000000002220446049250313080847263336181640625
    0.4= 0.40000000000000002220446049250313080847263336181640625
    d*f= 0.0299999999999999988897769753748434595763683319091796875
    0.03= 0.0299999999999999988897769753748434595763683319091796875
    d-f= 0.1999999999999999833466546306226518936455249786376953125
    0.2= 0.200000000000000011102230246251565404236316680908203125
    d/f= 2.999999999999999555910790149937383830547332763671875
    (d-f)*(d-f)= 0.03999999999999999389377336456163902767002582550048828125
    

    You will notice that 0.1 is slightly too large and 0.3 is slightly too small. This means that when you add or multiply them you get a number which is about right. However if you use subtract or division, the errors accumulate and you get a number which is too far from the represented number.

    i.e. you can see that 0.1 and 0.3 results in the same value as 0.4, whereas 0.3 – 0.1 doesn’t result in the same value as 0.2


    BTW to round the answer without using BigDecimal you can use

    System.out.printf("d-f= %.2f%n", d - f);
    System.out.printf("d/f= %.2f%n", d / f);
    System.out.printf("(d-f)*(d-f)= %.2f%n", (d - f) * (d - f));
    

    prints

    d-f= 0.20
    d/f= 3.00
    (d-f)*(d-f)= 0.04
    

    or

    System.out.println("d-f= " +  roundTo6Places(d - f));
    System.out.println("d/f= " +  roundTo6Places(d / f));
    System.out.println("(d-f)*(d-f)= " +  roundTo6Places((d - f) * (d - f)));
    
    public static double roundTo6Places(double d) {
        return (long)(d * 1e6 + (d > 0 ? 0.5 : -0.5)) / 1e6;
    }
    

    prints

    System.out.println("d-f= " +  roundTo6Places(d - f));
    System.out.println("d/f= " +  roundTo6Places(d / f));
    System.out.println("(d-f)*(d-f)= " +  roundTo6Places((d - f) * (d - f)));
    

    The rounding removes the rounding error (leaving only the representation error which the toString is designed to handle)


    The value which can be represented before and after 0.1 can be calculated as

    double before_f = Double.longBitsToDouble(Double.doubleToLongBits(f) - 1);
    System.out.println("The value before 0.1 is " + new BigDecimal(before_f) + " error= " + BigDecimal.valueOf(0.1).subtract(new BigDecimal(before_f)));
    System.out.println("The value after 0.1 is  " + new BigDecimal(f) + " error= " + new BigDecimal(f).subtract(BigDecimal.valueOf(0.1)));
    

    prints

    The value before 0.1 is 0.09999999999999999167332731531132594682276248931884765625 
        error= 8.32667268468867405317723751068115234375E-18
    The value after 0.1 is  0.1000000000000000055511151231257827021181583404541015625 
        error= 5.5511151231257827021181583404541015625E-18
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Floating point inaccuracy examples double a = 0.3; std::cout.precision(20); std::cout << a
Possible Duplicate: Retain precision with Doubles in java Floating point inaccuracy examples I know
Possible Duplicate: Round a double to 2 significant figures after decimal point I know
Possible Duplicate: Single quotes vs. double quotes in Python I have seen that when
Possible Duplicate: Double Tap -> Zoom on Android MapView? I have an Activity that
Possible Duplicate: Double tap on a button Hi, I find on foruns that to
Possible Duplicate: Why do I see a double variable initialized to some value like
Possible Duplicate: Double value to round up in Java I am getting float number
Possible Duplicate: Why does Math.Floor(Double) return a value of type Double? Why does C#
Possible Duplicate: .NET - What’s the best way to implement a catch all exceptions

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.