Area under curve, Mathematics

Assignment Help:
w/ You could use this sample code to test your C functions
// Please make appropriate changes to use this for C++.

// Following main function contains 3 representative test cases

int main() {
// test case 1
{
int noOfTerms = 2;
struct Term *equation = (struct Term*)malloc(sizeof(struct Term) * noOfTerms);
equation[0].exponent = 1;
equation[0].coefficient = 1;

equation[1].exponent = 2;
equation[1].coefficient = 3;

int limit1 = 4;
int limit2 = 8;

double usrout = getAreaUnderCurve(equation, noOfTerms, limit1, limit2);
printf("%lf", usrout);

}

// test case 2
{
int noOfTerms = 1;
struct Term *equation = (struct Term*)malloc(sizeof(struct Term) * noOfTerms);
equation[0].exponent =1;
equation[0].coefficient = 1;

int limit1 = 1;
int limit2 = 1;

double usrout = getAreaUnderCurve(equation, noOfTerms, limit1, limit2);
printf("%lf", usrout);

}

// test case 3
{
int noOfTerms = 1;
struct Term *equation = (struct Term*)malloc(sizeof(struct Term) * noOfTerms);
equation[0].exponent =1;
equation[0].coefficient = 1;

int limit1 = 2;
int limit2 = 1;

double usrout = getAreaUnderCurve(equation, noOfTerms, limit1, limit2);
printf("%lf", usrout);
}
}

Related Discussions:- Area under curve

Function of a function, Function of a Function Suppose ...

Function of a Function Suppose y is a function of z,            y = f(z) and z is a function of x,            z = g(x)

Find the time required for an enlargement, 1. The polynomial G(x) = -0.006x...

1. The polynomial G(x) = -0.006x4 + 0.140x3 - 0.53x2 + 1.79x measures the concentration of a dye in the bloodstream x seconds after it is injected. Does the concentration increase

Undetermined coefficients, UNDETERMINED COEFFICIENTS The way of Undeter...

UNDETERMINED COEFFICIENTS The way of Undetermined Coefficients for systems is pretty much the same to the second order differential equation case. The simple difference is as t

Age problem, three years ago,Rica was thrice as old as dandy.Three years he...

three years ago,Rica was thrice as old as dandy.Three years hence,she will be twice as old.Find their present.

Determine the circumference, If Gretta's bicycle has a 25-inch radius wheel...

If Gretta's bicycle has a 25-inch radius wheel, how far will she travel in two turns of the wheel? (π = 3.14) a. 491 in b. 78.5 in c. 100 in d. 157 in d. To determin

Permatuation and combination problem, A,B,C are natural numbers and are in ...

A,B,C are natural numbers and are in arithmetic progressions and a+b+c=21.then find the possible values for a,b,c Solution) a+b+c=21 a+c=2b 3b=21 b=7 a can be 1,2,3,4,5,6 c c

What is the square root of -i, To find sq root by the simple step... root (...

To find sq root by the simple step... root (-i)=a+ib............... and arg of -i= -pi/2 or 5pi/2

Explain adding negative fraction, Explain Adding Negative Fraction? To...

Explain Adding Negative Fraction? To add negative fractions: 1. Find a common denominator. 2. Change the fractions to their equivalents, so that they have common denominators

What is metric system explain in brief, What is Metric System explain in br...

What is Metric System explain in brief? There are two main systems of measurement in use today. Most countries in the world use the Metric System. In only three countries-the

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd