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

This year he is 651/4 inches tall how many inches did grow, Last year Jonat...

Last year Jonathan was 603/4 inches tall. This year he is 651/4 inches tall. How many inches did he grow? Subtract to find outthe difference in heights. You will need to borro

Right-handed limit, Right-handed limit We say provided we can m...

Right-handed limit We say provided we can make f(x) as close to L as we desire for all x sufficiently close to a and x>a without in fact letting x be a.

Use mathematical induction and prove equation, 1. Use mathematical inductio...

1. Use mathematical induction to prove whenever n is a positive integer. 2. Use loop invariant to prove that the program for computing the sum of 1,...,n is correct.

Calculus, what is a domain of a function?

what is a domain of a function?

Calculus, I need help fast with my calculus work

I need help fast with my calculus work

Replacement problems, how we will use the replacement problmes in our life?...

how we will use the replacement problmes in our life?

Statistics, if the sum of mean and variance of a binomial distribution is ...

if the sum of mean and variance of a binomial distribution is 4.8 for five trials, the distribution

Prisoners dilemma, Prisoners Dilemma This is a type of non-zero sum gam...

Prisoners Dilemma This is a type of non-zero sum game and derives its name from the given story: The district attorney has two bank robbers in separate cells and offers them

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