Answer:
I love algebra anyways
The ans is in the picture with the steps how i got it
(hope this helps can i plz have brainlist :D hehe)
Step-by-step explanation:
Answer:
Slope = -2
Y intercept = 4
Equation. y = -2x +5
Step-by-step explanation:
Using points, (1,2) and (3,-2)
Slope = (-2-2)/(3-1) = -4/2 = -2
Y intercept = 4
-2 = (y-3)/(x-1)
-2(x-1) = y-3
-2x +2 = y-3
y = -2x +2 +3
y = -2x +5
Answer:
The percentage increase in Tessa's stock is 40%
Step-by-step explanation:
Given that:
Previous worth = $173
Worth now = $242.20
We have to find percentage increase which can be known by subtracting previous worth from present worth and multiplying it by 100:
Percentage increase = $242.20 - $173 = $69.2
Percentage increase = $69.2/173 *100
Percentage increase = 40%
i hope it will help you!
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;
}
You know two lines y=ax+b and y=mx+n that are perpendicular, so we have the product a*m=-1
+ This line is perpendicular to y=13x-5, so it has equation: y=-1/13x+b
+ And it passes through the point (3;1), so we have x=3, y=1. So 1=-1/13 *3+b
and b= 1+3/13= 16/13
And we have y=-1/13x+16/13
Have fun