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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T21:37:47+00:00 2026-05-18T21:37:47+00:00

I just came around and decided to try some Ada. The downside is that

  • 0

I just came around and decided to try some Ada.
The downside is that the syntax and function strays quite away from C++.
So I had to like cram various stuff to get this thing to work.

My question is if there are some better way to do this calculation that what I have done here

   IF(B < 0.0) THEN
      B := ABS(B);
      X1 := (B / 2.0) + Sqrt( (B / 2.0) ** 2.0 + ABS(C));
      X2 := (B / 2.0) - Sqrt( (B / 2.0) ** 2.0 + ABS(C));
   ELSE
      X1 := -(B / 2.0) + Sqrt( (B / 2.0) ** 2.0 - C);
      X2 := -(B / 2.0) - Sqrt( (B / 2.0) ** 2.0 - C);
   END IF;

I had some problem with negative numbers, that’s why I did a IF statement and used ABS() to turn those into positive. But the weird thing is that it works perfectly for the other case, which is strange…

  • 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-18T21:37:48+00:00Added an answer on May 18, 2026 at 9:37 pm

    Solving quadratic equations is not as simple as most people think.

    The standard formula for solving a x^2 + b x + c = 0 is

    delta = b^2 - 4 a c
    x1 = (-b + sqrt(delta)) / (2 a)   (*)
    x2 = (-b - sqrt(delta)) / (2 a)
    

    but when 4 a c << b^2, computing x1 involves subtracting close numbers, and makes you lose accuracy, so you use the following instead

    delta as above
    x1 = 2 c / (-b - sqrt(delta))     (**)
    x2 = 2 c / (-b + sqrt(delta))
    

    which yields a better x1, but whose x2 has the same problem as x1 had above.

    The correct way to compute the roots is therefore

    q = -0.5 (b + sign(b) sqrt(delta))
    

    and use x1 = q / a and x2 = c / q, which I find very efficient. If you want to handle the case when delta is negative, or complex coefficients, then you must use complex arithmetic (which is quite tricky to get right too).

    Edit: With Ada code:

    DELTA := B * B - 4.0 * A * C;
    
    IF(B > 0.0) THEN
        Q := -0.5 * (B + SQRT(DELTA));
    ELSE
        Q := -0.5 * (B - SQRT(DELTA));
    END IF;
    
    X1 := Q / A;
    X2 := C / Q;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just came to know that .sh files don't use set and spaces around
I just came across Clang/LLVM today , and decided to try it out. My
just have a general question that came up while I was playing around with
I just came cross puppet inheritance lately. A few questions around it: is it
Just came across an issue with my Wordpress template that I can't figure out.
I just came to know that it's possible to record call voice (both incoming
I just came across a weird error: private bool GetBoolValue() { //Do some logic
Looking around for python implementations of tries just so that I can understand what
So I'm just learning C#, and came across something that I find odd... I'm
Is it possible to retrieve just one photo from picasa. I am looking around

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.