9514 1404 393
Answer:
x = 19
A = 30°
B = C = 75°
Step-by-step explanation:
In an isosceles triangle, the angles opposite the congruent sides have the same measures.
A = B
3x +18 = 7x -58
76 = 4x . . . . . . . . add 58-4x
19 = x . . . . . . . . . divide by 4
Then the equal angles measure ...
A = B = 3(19) +18 = 75
C = 2(19) -8 = 30
Angles A, B, C measure 75°, 75°, 30°, respectively.
_____
<em>Alternate solution</em>
The sum of angles in a triangle is 180°, so you could write ...
(3x +18) +(7x -58) +(2x -8) = 180
12x = 228 . . . . . add 48
x = 19 . . . . . divide by 12
An easy method of converting decimal to binary number equivalents is to write down the decimal number and to continually divide-by-2 (two) to give a result and a remainder of either a “1” or a “0” until the final result equals zero.
There is no b unfortunately
Find inverse of x+a
interchAnge
Inverse is
Now
- x-a=cx-d
- x-cx=a-d
- x(1-c)=a-d
- x=a-d/1-c
So
You can have any number according to this but
- c must not be 1
- a and d must not be equal .
- All three should belongs to integers set
Note:-
As there is no b given in question (May be missed in typing) Part-2 's equation can't be executed and part 3 also
Answer:
clc%clears screen
clear all%clears history
close all%closes all files
p=250;
M=[];
for i=1:100000
re=0;
S=0;
while(S<=1)
S=S+rand;
re=re+100;
end
M(i)=re;
end
disp('Expected received money is');
mean(M)
disp('Since expcted is greater than what we pay. So, we will play')
Step-by-step explanation: