Step-by-step explanation:
1/2(6x+1/2)=0
3x+1/4=0
3X=-1/4
X=3(-1/4)
X=-3/4
OR
X=-.75
Answer: No
Step-by-step explanation: Because it is.
Answer:
See explanation
Step-by-step explanation:
Jacob has 75 cookies.
He gave 2 cookies to each student.
Complete the table:

Let n be the number of students. After nth student arrived Jacob had left

cookies.
This is an arithmetic sequence with

Thus,

Answer:
1
Step-by-step explanation:
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;
}