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

Calculus, Calculus Calculus is a branch of mathematics which describes...

Calculus Calculus is a branch of mathematics which describes how one variable changes in relationship to another variable. It enables us to determine the rate of change of one

Given the hypotenuse of a right triangle, Given the hypotenuse of a right t...

Given the hypotenuse of a right triangle: Given that the hypotenuse of a right triangle is 18" and the length of one side is 11", what is the length of another side? a 2 +

External forces, It is the catch all force. If there are some other forces ...

It is the catch all force. If there are some other forces which we decide we need to act on our object we lump them in now and call this good. We classically call F(t) the forcing

What is addition rule of probability, Q. What is Addition Rule of probabili...

Q. What is Addition Rule of probability? Ans. Suppose there are 17 girls and 15 boys in your stats class. There are 17 + 15 = 32 ways for your teacher to pick one student

profit & loss, A sell a watch to B at gain of 20% and B sell to C at loss ...

A sell a watch to B at gain of 20% and B sell to C at loss of 10%. if C pays @ 432, how much did A pays for it.

Construct the adjacency matrix and the adjacency lists, Question: Constrcut...

Question: Constrcut the adjacency matrix and the adjacency lists for the graph G below, where the weights associated with edges represent distances between nodes. If no edge is pre

How does the algorithm work?, How Does The Algorithm Work? Most of us, ...

How Does The Algorithm Work? Most of us, when asked to multiply, say, 35 by 23, write Why do we place the mark x (or 0, or leave a blank) in the second row of the calcul

GEOMETRIC PROGRESSION, THE FIRST AND THIRD TERM OF A G.P ARE 8 AND 18 RESPE...

THE FIRST AND THIRD TERM OF A G.P ARE 8 AND 18 RESPECTIVELY AND THE COMMON RATIO IS POSITIVE.FIND THE COMMON RATIO

Simplify, X^2 – y^2 – 2y - 1

X^2 – y^2 – 2y - 1

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