Answer:
C, sin(x), -1
Step-by-step explanation:
right on Edge
split up the equation using the sine sum equation
Answer:
1/8
Step-by-step explanation:
What you do is just times 2/8 by 1/2
2/8*1/2=1/8 is your answer.
Answer:
16.5 square units
Step-by-step explanation:
You are expected to integrate the function between x=1 and x=4:

__
<em>Additional comment</em>
If you're aware that the area inside a (symmetrical) parabola is 2/3 of the area of the enclosing rectangle, you can compute the desired area as follows.
The parabolic curve is 4-1 = 3 units wide between x=1 and x=4. It extends upward 2.25 units from y=4 to y=6.25, so the enclosing rectangle is 3×2.25 = 6.75 square units. 2/3 of that area is (2/3)(6.75) = 4.5 square units.
This region sits on top of a rectangle 3 units wide and 4 units high, so the total area under the parabolic curve is ...
area = 4.5 +3×4 = 16.5 . . . square units
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}