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 9167441
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T15:23:28+00:00 2026-06-17T15:23:28+00:00

I am trying to understand roundoff error for basic arithmetic operations in MATLAB and

  • 0

I am trying to understand roundoff error for basic arithmetic operations in MATLAB and I came across the following curious example.

(0.3)^3 == (0.3)*(0.3)*(0.3)

ans = 0

I’d like to know exactly how the left-hand side is computed. MATLAB documentation suggests that for integer powers an ‘exponentiation by squaring’ algorithm is used.

“Matrix power. X^p is X to the power p, if p is a scalar. If p is an integer, the power is computed by repeated squaring.”

So I assumed (0.3)^3 and (0.3)*(0.3)^2 would return the same value. But this is not the case. How do I explain the difference in roundoff error?

  • 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-17T15:23:30+00:00Added an answer on June 17, 2026 at 3:23 pm

    Thanks to @Dougal I found this:

    #include <stdio.h>
    int main() {
      double x = 0.3;
      printf("%.40f\n", (x*x*x));
    
      long double y = 0.3;
      printf("%.40f\n", (double)(y*y*y));
    }
    

    which gives:

    0.0269999999999999996946886682280819513835
    0.0269999999999999962252417162744677625597
    

    The case is strange because the computation with more digits gives a worst result. This is due to the fact that anyway the initial number 0.3 is approximated with few digits and hence we start with a relatively “large” error. In this particular case what happens is that the computation with few digits gives another “large” error but with opposite sign… hence compensating the initial one. Instead the computation with more digits gives a second smaller error but the first one remains.

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

Sidebar

Related Questions

Trying to understand what Sql Profiler means by emitting sp_reset_connection. I have the following,
Trying to understand why this doesn't work. I keep getting the following errors: left
Trying to understand resources in java-land. I believe the following is true: Resources loaded
Trying to understand how CoffeeScript instance and class variable works I came with this
I'm trying to understand how the following .arff file can be expressed in Weka
I am trying understand why the .wrap() function in my basic table of contents
Trying to understand when implementation of IDisposable is necessary: I wrote a little example.
I´m trying to understand and use the Picasa Api, I´m using this example https://developers.google.com/picasa-web/docs/2.0/developers_guide_java?hl=nl-NL
Trying to understand Pointer Arithmetic when dealing with arrays. It seems to me they're
I am trying understand ViewModels deeper and I have read many articles and blogs

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.