Answer:
B. Multiplication
Step-by-step explanation:
1+3x+(x*4)
1+3x+4x
You are multiplying x and 4
Answer:
its D
Step-by-step explanation:
basically all you have to do if cut off the semicircles fins their areas then find the rectangles area and add them all up
I will be using the language C++. Given the problem specification, there are an large variety of solving the problem, ranging from simple addition, to more complicated bit testing and selection. But since the problem isn't exactly high performance or practical, I'll use simple addition. For a recursive function, you need to create a condition that will prevent further recursion, I'll use the condition of multiplying by 0. Also, you need to define what your recursion is.
To wit, consider the following math expression
f(m,k) = 0 if m = 0, otherwise f(m-1,k) + k
If you calculate f(0,k), you'll get 0 which is exactly what 0 * k is.
If you calculate f(1,k), you'll get 0 + k, which is exactly what 1 * k is.
So here's the function
int product(int m, int k)
{
if (m == 0) return 0;
return product(m-1,k) + k;
}
7a^3(6a^2 + a)^2 - 4a^6
All we have to do here is basically add and subtract exponents!
(6a^2 + a)^2 = 36a^4 + a^2
7a^3(36a^4 + a^2) - 4a^6
252a^7 + 7a^5 - 4a^6
Answer is C.
In this type of problem, we would want to use a system of linear equations.
First, we need to find our equations. We know that the two boys traveled 275 km in total, and since x and y count the distance traveled (just in different modes of travel), we can write: x + y = 275.
Next, the problem says that they biked 55 km more than they bussed. So, x = y + 55.
Now that we have two equations to solve for two variables, we can lay them out next to each other:
x + y = 275
x = y + 55
We see that we can substitute x in the first equation with y + 55. This gives us
(y + 55) + y = 275
We solve for y and get y = 110 km by bus. But, we want to know how far they traveled by bike. So, since x = y + 55 and y = 110, we can solve for x by doing 110 + 55 = 165 km by bike.
The answer is 165 kilometers.