16.12.2020

B=
r+k
3
110
f for r

. 3

Step-by-step answer

09.07.2023, solved by verified expert
Unlock the full answer

B= r+k 3 110 f for r, №18011313, 16.12.2020 01:03.

Step-by-step explanation:1. Write the expression.

B= r+k 3 110 f for r, №18011313, 16.12.2020 01:03

2. Divide by f on both sides.

B= r+k 3 110 f for r, №18011313, 16.12.2020 01:03

3. Multiply both sides by 3.

B= r+k 3 110 f for r, №18011313, 16.12.2020 01:03

3. Substract k from both sides.

B= r+k 3 110 f for r, №18011313, 16.12.2020 01:03

4. Reorganize.

B= r+k 3 110 f for r, №18011313, 16.12.2020 01:03.

It is was helpful?

Faq

Mathematics
Step-by-step answer
P Answered by Master

r=\frac{3B}{f}-k.

Step-by-step explanation:1. Write the expression.

B=(\frac{r+k}{3} )f

2. Divide by f on both sides.

\frac{B}{f} =[(\frac{r+k}{3} )f]/f\\ \\\frac{B}{f} =\frac{r+k}{3}

3. Multiply both sides by 3.

\frac{3B}{f} =r+k

3. Substract k from both sides.

\frac{3B}{f}-k =r+k-k\\ \\\frac{3B}{f}-k =r

4. Reorganize.

r=\frac{3B}{f}-k.

Mathematics
Step-by-step answer
P Answered by Specialist

Answers are in explanation part.

Step-by-step explanation:

Law of Cosines for side c: c=\sqrt{a^2+b^2-2ab\cos C}

a) c = 3.561

b) c = 4.136

c) c = 3.09

d) c = 12.5

e) c = 1.978

f) c = 9.173

g) c = 5.196

Law of Cosines for angle C: C=cos^{-1}(\frac{a^2+b^2-c^2}{2ab})

h) C = 82.819°

i) C = 60°

j) C = 21.787°

k) C = 68.676°

l) Sides (8, 5, 1) cannot form a triangle. It is impossible.

m) C = 118.454°

Mathematics
Step-by-step answer
P Answered by Specialist

Answers are in explanation part.

Step-by-step explanation:

Law of Cosines for side c: c=\sqrt{a^2+b^2-2ab\cos C}

a) c = 3.561

b) c = 4.136

c) c = 3.09

d) c = 12.5

e) c = 1.978

f) c = 9.173

g) c = 5.196

Law of Cosines for angle C: C=cos^{-1}(\frac{a^2+b^2-c^2}{2ab})

h) C = 82.819°

i) C = 60°

j) C = 21.787°

k) C = 68.676°

l) Sides (8, 5, 1) cannot form a triangle. It is impossible.

m) C = 118.454°

StudenGPT
Step-by-step answer
P Answered by Studen AI
The system of inequalities represented by the graph is:

y ≥ 3x + 6 (represented by the line passing through the points (0, 6) and (-2, 0) with shaded region above the line)

y < -x - 6 (represented by the line passing through the points (0, -6) and (-6, 0) with shaded region below the line)

So, the correct answer is:

y ≥ 3x + 6 (Option D)
StudenGPT
Step-by-step answer
P Answered by Studen AI
The system of inequalities represented by the graph is:

y ≥ 3x + 6 (represented by the line passing through the points (0, 6) and (-2, 0) with shaded region above the line)

y < -x - 6 (represented by the line passing through the points (0, -6) and (-6, 0) with shaded region below the line)

So, the correct answer is:

y ≥ 3x + 6 (Option D)
Computers and Technology
Step-by-step answer
P Answered by Master

Solution :

#include  $$

#include $$

#include $$

//Converts $\text{hex string}$ to binary string.

$\text{char}$ * hexadecimal$\text{To}$Binary(char* hexdec)

{

 

long $\text{int i}$ = 0;

char *string = $(\text{char}^ *) \ \text{malloc}$(sizeof(char) * 9);

while (hexdec[i]) {

//Simply assign binary string for each hex char.

switch (hexdec[i]) {

$\text{case '0'}:$

strcat(string, "0000");

break;

$\text{case '1'}:$

strcat(string, "0001");

break;

$\text{case '2'}:$

strcat(string, "0010");

break;

$\text{case '3'}:$

strcat(string, "0011");

break;

$\text{case '4'}:$

strcat(string, "0100");

break;

$\text{case '5'}:$

strcat(string, "0101");

break;

$\text{case '6'}:$

strcat(string, "0110");

break;

$\text{case '7'}:$

strcat(string, "0111");

break;

$\text{case '8'}:$

strcat(string, "1000");

break;

$\text{case '9'}:$

strcat(string, "1001");

break;

case 'A':

case 'a':

strcat(string, "1010");

break;

case 'B':

case 'b':

strcat(string, "1011");

break;

case 'C':

case 'c':

strcat(string, "1100");

break;

case 'D':

case 'd':

strcat(string, "1101");

break;

case 'E':

case 'e':

strcat(string, "1110");

break;

case 'F':

case 'f':

strcat(string, "1111");

break;

default:

printf("\nInvalid hexadecimal digit %c",

hexdec[i]);

string="-1" ;

}

i++;

}

return string;

}

 

int main()

{ //Take 2 strings

char *str1 =hexadecimalToBinary("FA") ;

char *str2 =hexadecimalToBinary("12") ;

//Input 2 numbers p and n.

int p,n;

scanf("%d",&p);

scanf("%d",&n);

//keep j as length of str2

int j=strlen(str2),i;

//Now replace n digits after p of str1

for(i=0;i<n;i++){

str1[p+i]=str2[j-1-i];

}

//Now, i have used c library strtol

long ans = strtol(str1, NULL, 2);

//print result.

printf("%lx",ans);

return 0;

}

Mathematics
Step-by-step answer
P Answered by PhD

Cost of 7 gallons=$24.50

Cost of 1 gallon=24.50/7=3.5

Cost of 15 gallons=15*3.5=52.5

Cost of 15 gallons will be $52.5

Try asking the Studen AI a question.

It will provide an instant answer!

FREE