1/3 log 125 can be rewritten as (1/3) log 5^3 = log 5
Similarly, 1/3 log 8 can be re-written as 1/3 log 2^3, same as (1/3)(3 log 2)= log 2
Thus, the fraction can be written in simpified form as log 5 / log 2.
The second term is the same as log m^5.
Thus, your final result is (log 5) / (log 2) + log m^5.
Answer:
2/7
Step-by-step explanation:
To find the this first you need the total number of marbles minus one since the blue marble was taken.
4+5+6-1=14
after one blue marble being picked there are 4 blue left, so the fraction is
4/14 and after being simplified it is 2/7
You follow the same steps to get the product
Could I have a picture of the model which is shown?
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