If you are going to use mental math, round $0.98 up to $1.
Rounded, the cost of the 30 songs is $30.
However, since you rounded at the beginning, you need to subtract 2 cents for every song you purchased from the total of $30.
Multiply 30 by $0.02 to get $0.60. Subtract $0.60 from $30.
Your answer should be $29.40.
STEP 1:
Divide the length of the ribbon by the size of the pieces.
12 inches= 1 foot
= 9 ft ÷ 15 inch pieces
convert ft to inches
= (12)(9) ÷ 15
= 108 ÷ 15
= 7.2 pieces from one roll
STEP 2:
multiply the number of pieces that can be cut from one roll by the number of rolls
= 7.2 pieces * 5 rolls
= 36 pieces total from 5 rolls
ANSWER: The greatest number of 15-inch pieces that can be cut from five 9-foot rolls is 36.
Hope this helps! :)
It takes value from a user and then user the operation of (+,-,*/).
i used c++ programming language to solve this program:
#include<iostream>
using namespace std;
int main() {
int var1, var2;
char operation;
cout << "Enter the first number : ";
cin >> var1;
cout << endl;
cout <<"Enter the operation to be perfomed : ";
cin >> operation;
cout << endl;
cout << "Enter the second nuber : ";
cin >> var2;
cout << endl;
bool right_input = false;
if (operation == '+') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 + var2);
right_input = true;
}
if (operation == '-') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 - var2);
right_input = true;
}
if (operation == '*') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 * var2);
right_input = true;
}
if (operation == '/' && var2 != 0) {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 - var2);
right_input = true;
}
if (operation == '/' && var2 == 0) {
cout << "Error. Division by zero.";
right_input = true;
}
if (!right_input) {
cout << var1 << " " << operation << " " << var2 << " = " << "Error;";
cout << "Invalid Operation!";
}
cout << endl;
system("pause");
return 0;
}
Answer:
f(x, y) = Sin(x*y)
We want the second order taylor expansion around x = 0, y = 0.
This will be:
So let's find all the terms:
Remember that:
f(0,0) = sin(0*0) = 1.
Then we have that the taylor expansion of second order around x = 0 and y = 0 is:
sin(x,y) = x*y + x*y + x*y = 3*x*y