Answer:
11+2n
Step-by-step explanation:
Arithmetic sequence=a+(n-1)d
a=first number
n=nth term
d=difference
a=9
n=?
d=-2
So let's solve
9+(n-1)(-2)
9+(2n+2)
9+2n+2
Collect like terms
9+2+2n
11+2n
So the nth term is 11+2n
Answer:
A:(-2,-3)
B:(-4.009,1.018) And (-2,-3)
C:x≈0,1.61878812
Step-by-step explanation:
I found the equations
g(x)=e^x+1
p(x)=5/2x+2
f(x)=-2x-7
plugged it in on a graph found the answer to find g(x) all you need to do is know the parent function y=e^2(exponential) and I found where the lines intersect for part A and B and or p(x)=g(x) I did e^x+1=(5/2)x+2
Answer:
She got a %40 discount
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;
}