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

  • Home
  • SEARCH
  • 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 8723927
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T07:43:33+00:00 2026-06-13T07:43:33+00:00

This is just out of curiosity. If I store two recursive numbers or irrational

  • 0

This is just out of curiosity. If I store two recursive numbers or irrational numbers in two doubles and then perform some operations, how does it produce actual result?

For example,

double d1=7d/3;
double d2=5d/3;
double sum=d1+d2;
System.out.println(new BigDecimal(sum)); //prints exactly 4

Another one:

double d1=log10(3);
double value=Math.pow(10,d1);
System.out.println(new BigDecimal(value)); //prints exactly 3

How these accurate results are generated?

  • 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-06-13T07:43:33+00:00Added an answer on June 13, 2026 at 7:43 am

    If you amend your code slightly you will see that d1 and d2 are not exactly 7/3 or 5/3. The reason why d1+d2 is exactly 4 is that 4 can be represented exactly as a double and is the closest to the exact result of this addition.

    public static void main(String[] args) throws Exception {
        double d1 = 7d / 3;
        double d2 = 5d / 3;
        System.out.println(new BigDecimal(d1)); //2.333333333333333481363069950020872056484222412109375
        System.out.println(new BigDecimal(d2)); //1.6666666666666667406815349750104360282421112060546875
        System.out.println(new BigDecimal(d1).add(new BigDecimal(d2))); //4.0000000000000002220446049250313080847263336181640625
        double sum = d1 + d2; 
        System.out.println(new BigDecimal(sum)); //4
    }
    

    Java follows the IEEE 754 convention:

    the sum is rounded to the nearest value in the chosen value set using IEEE 754 round-to-nearest mode

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This question is just out of curiosity. In recursive templates if we forget to
This is just out of curiosity. We know that for cryptology applications two large
ok this is just strickly out of curiosity here because i have read some
Just out of curiosity, I wanted to do this and created some shapes like
This question is really just out of curiosity. Can someone shed some light onto
Just out of curiosity because I've always wondered this. How does the application Shazam
This is mostly just out of curiosity, and is potentially a silly question. :)
Just out of curiosity, asking this Like the expression one below a = (condition)
I know this is a stupid question. But just out of curiosity, is there
I know this question could be in vain, but it's just out of curiosity,

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.