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

Quadriatic-equations, Q. a(b - c)x^2 + b(c - a)x + c(a - b) = 0 has equal r...

Q. a(b - c)x^2 + b(c - a)x + c(a - b) = 0 has equal roots then b = ? Ans: Condition that a quadratic equation ax² + bx + c = 0 has equal roots is: Its discriminant, b² - 4ac = 0 A

Combinations, Now we take up combinations and its related concepts. C...

Now we take up combinations and its related concepts. Combinations are defined as each of the groups or selections which can be made by taking some or all of the

Examples of linear equation, Examples of Linear Equation Please provid...

Examples of Linear Equation Please provide me some Examples of Linear Equation?

Characteristics of exponential smoothing, Characteristics of Exponential Sm...

Characteristics of Exponential Smoothing 1. More weight is described to the most recent data. 2. All past data are incorporated not like in moving averages. 3. Les

Distance traveled, a) Determine the distance traveled among t = 0 and  t =∏...

a) Determine the distance traveled among t = 0 and  t =∏/2 by a particle P(x, y) whose position at time t is given by Also check your result geometrically.  (5) b) D

Example of set theory, Suggest me the solution: Consider the given unive...

Suggest me the solution: Consider the given universal set T and its subjects C, D and E T = {0, 2, 4, 6, 8, 10, 12} C = {4, 8,} D = {10, 2, 0} E = {0} Find out

Mathematics Warm-Ups for CCSS, Ask question #Minimum 100 words accepted wha...

Ask question #Minimum 100 words accepted what is a ratio

Applications of derivatives, Applications of derivatives : At last, let's ...

Applications of derivatives : At last, let's not forget about our applications of derivatives. Example    Assume that the amount of air in a balloon at any time t is specified

Determine if r is equivalence relation or a partial ordering, Let R be the ...

Let R be the relation on the set of ordered pairs of positive integers such that ((a, b), (c, d)) ∈ R if and only if ad = bc.  Determine whether R is an equivalence relation or a p

Fraction, Ask question #Minimum 100 words accepted

Ask question #Minimum 100 words accepted

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