Answer:
37. {-1, -1}.
Step-by-step explanation:
I'll solve the first one . The other can be solved in a similar way. We can use the method of elimination.
x1 - x2 = 0
3x1 - 2x2 = -1
We can multiply the first equation by -2. We then have an equation containing + 2x2 so when we add this to the second equation the 2x2 will be eliminated
So the first equation becomes:
-2x1 + 2x2 = 0 Bring down the second equation:
3x1 - 2x2 = -1 Now adding, we get:
x1 + 0 = -1
so x1 = -1.
Now we substitute this value of x1 in the original first equation:
-1 - x2 = 0
-1 = x2
x2 = -1.
So the solution set is {-1, -1}.
If there are more than 2 equations you can use a combination of substitutions and eliminations.
Answer:
import pandas as pd
vec = pd.Series([7.12,24,4,18,12,9])
vec.plot(kind = 'hist')
Step-by-step explanation:
You can use python for that.
By doing
import pandas as pd
vec = pd.Series([7.12,24,4,18,12,9])
vec.plot(kind = 'hist')
And this is the result you get
#1: The whole value of data is 21.
There are 21 data values on the dot plot.
#2: The number of data values is 14.
#3: The unit is: 21 ÷ 14.
And it is 1.5.
#4: A statistical question can be answered by collecting data and where there will be variability in that data.
For example, how many students enjoy playing game?
Answer:
Number of vans = 7 students
Number of buses = 60 students
Step-by-step explanation:
Let
Number of vans = x
Number of buses = y
2x + 11y = 674 (1)
6x + 14y = 882 (2)
Multiply (1) by 3
6x + 33y = 2,022 (3)
6x + 14y = 882 (2)
Subtract (2) from (3)
33y - 14y = 2,022 - 882
19y = 1,140
y = 1,140 / 19
= 60
y = 60 students
Substitute y = 60 into
2x + 11y = 674 (1)
2x + 11(60) = 674
2x + 660 = 674
2x = 674 - 660
2x = 14
x = 14/2
= 7
x = 7 students
Answer:
B
Step-by-step explanation:
Hope this solve your answer