Answer:
g(x) = f(5x)
Step-by-step explanation:
We assume that "shrink by a factor of 1/5" means that horizontal distances on the graph of g(x) are 1/5 of those on the graph of f(x).
Dividing x by a dilation factor will cause horizontal dilation of a graph. Here, that factor is 1/5, so the desired function is ...
g(x) = f(x/(1/5))
g(x) = f(5x)
Answer:
-9x-4x=-13x
Step-by-step explanation:
They both already have the same variable, so you would solve it like any other subtraction problem and put the x at the end.
The perimeter would be 12 and the area would be 6
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