Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Abstract data types are represented by two thingsThe data, andThe functions that act on the dataWe saw in class how a fraction was created as
Abstract data types are represented by two thingsThe data, andThe functions that act on the dataWe saw in class how a fraction was created as an abstract data type. In this lab, we are going to create an abstract data type for quadratic equations of the form ax bx c Here are the functions that operate on quadratics.makequadratica b c This creates and returns a quadratic ax bx c coefficientq i Return the ith coefficient of the quadratic q That is if q is ax bx c thencoefficientq is acoefficientq is bcoefficientq is c The two functions above are the only ones that need to know about how quadratics are represented internally. Everything else uses and builds on the two functions above.These functions perform arithmetic with quadratics.addquadraticq q Takes two quadratics and returns the result of adding themmultiplyn q Takes a number n and returns the result of multiplying the quadratic by it ie n x q n x ax bx chasrealrootsq Takes a quadratic q and return true if it has one or two real roots, or false otherwise. Recall from basic algebra that a quadratic has real roots only if the discriminant is zero or positive.differentiatequadraticq Differentiate the quadratic q ie perform dqdx Recall from basic calculus that if q ax bx c then dqdx ax bYour task is to write these functions. You can choose any internal representation you wish.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started