Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

***MIPS*** Quadratic Equation Problem Description: Solve a quadratic equation in two linked files. Write a function to calculate the roots of any quadratic equation of

***MIPS***

Quadratic Equation

Problem Description:

Solve a quadratic equation in two linked files. Write a function to calculate the roots of any quadratic equation of the form ax2+bx+c. a, b, and c are all single-precision floating point values and are passed to the function on the stack. The order you put the arguments on the stack is up to you.

When you return, there should be three items on the stack, two floating point values (referred to below as r1 and r2), and a Status integer. Status indicates the nature of the results returned. Again, the order you put the three values on the stack is up to you.

Status:

0 : 2 real roots in r1 & r2

1 : 1 real root in r1; r2 can be ignored

2: 2 complex roots of the form (r1 i r2)

3 : no roots computed (error); r1 and r2 can be ignored.

Your program should prompt for the values a, b, and c, then label and print the results. For the purposes of this function, assume two numbers that are within 0.001 are the same.

Submit the Following File(s):

roots.asm, roots_main.asm

Required Input:

Three 32-bit floating point numbers (a, b, and c)

Required Output:

Your output should look something like the following examples. Note this is three runs.

Quadratic Solver a: 3.0 b: 4.5 c: -1.2 There are two roots: 0.23107084351742913, -1.7310708435174291 Quadratic Solver a: 2.0 b: 4.0 c: 2.0 There is one root: -1.00 Quadratic Solver a: 4.3 b: -2.45 c: 2.0 There are two complex roots: 0.284883721 +/- 0.619643078i

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Analysis Using SQL And Excel

Authors: Gordon S Linoff

2nd Edition

111902143X, 9781119021438

Students also viewed these Databases questions

Question

how to sort a random string array by quicksort , in c#

Answered: 1 week ago

Question

How do Excel Pivot Tables handle data from non OLAP databases?

Answered: 1 week ago