Answer:
y = -2/3x + 4/3
Step-by-step explanation:
If two lines are perpendicular, the product of their slopes is -1
comparing what we have with the general form;
y = mx + b
The slope of the given equation is 3/2
To get the slope of other;
3/2 * m = -1
3m = -2
m = -2/3
So we want to write the point-slope equation
y-y1 = m(x-x1)
y-2 = -2/3(x + 1)
3y - 6 = -2x -2
3y = -2x -2 + 6
3y = -2x + 4
y = -2/3x + 4/3
The area is 25
a= 1/2bh
=1/2(10)(5)
=1/2(50)
Answer:
Since, three fourth of \(t\) is \(15\). Hence, the required equation is \(\frac{3t}{4}=15\)
Step-by-step explanation:
9514 1404 393
Answer:
a. -4
Step-by-step explanation:
When using the "diamond method" for factoring quadratics, the bottom number is the coefficient of the linear term. In this quadratic, it is -4.
The bottom number is -4.
Answer:324
Step-by-step explanation:
int i = 42.7; /* konwersja z double do int */
float f = i; /* konwersja z int do float */
double d = f; /* konwersja z float do double */
unsigned u = i; /* konwersja z int do unsigned int */
f = 4.2; /* konwersja z double do float */
i = d; /* konwersja z double do int */
char *str = "foo"; /* konwersja z const char* do char* [1] */
const char *cstr = str; /* konwersja z char* do const char* */
void *ptr = str; /* konwersja z char* do void* */
Podcza