Find an equation for the perpendicular bisector of the line segment whose endpoints
are
(8,1) and (-4, 9).
well, we know the line is a bisector to that segment with those points, hmmmm let's check the midpoint of that segment anyway, since a bisector will hit it at the midpoint
\(~~~~~~~~~~~~\textit{middle point of 2 points } \\\\ (\stackrel{x_1}{8}~,~\stackrel{y_1}{1})\qquad (\stackrel{x_2}{-4}~,~\stackrel{y_2}{9}) \qquad \left(\cfrac{ x_2 + x_1}{2}~~~ ,~~~ \cfrac{ y_2 + y_1}{2} \right) \\\\\\ \left(\cfrac{ -4 +8}{2}~~~ ,~~~ \cfrac{ 9 +1}{2} \right) \implies \left(\cfrac{ 4 }{2}~~~ ,~~~ \cfrac{ 10 }{2} \right)\implies (2~~,~~5)\)
so it passes through (2 , 5), hmmm now, keeping in mind that perpendicular lines have negative reciprocal slopes, let's check for the slope of the segment above
\((\stackrel{x_1}{8}~,~\stackrel{y_1}{1})\qquad (\stackrel{x_2}{-4}~,~\stackrel{y_2}{9}) ~\hfill \stackrel{slope}{m}\implies \cfrac{\stackrel{rise} {\stackrel{y_2}{9}-\stackrel{y1}{1}}}{\underset{run} {\underset{x_2}{-4}-\underset{x_1}{8}}} \implies \cfrac{ 8 }{ -12 } \implies - \cfrac{2 }{ 3 } \\\\[-0.35em] ~\dotfill\)
\(\stackrel{~\hspace{5em}\textit{perpendicular lines have \underline{negative reciprocal} slopes}~\hspace{5em}} {\stackrel{slope}{\cfrac{-2}{3}} ~\hfill \stackrel{reciprocal}{\cfrac{3}{-2}} ~\hfill \stackrel{negative~reciprocal}{-\cfrac{3}{-2}\implies \cfrac{3}{2}}}\)
so we're really looking for the equation of a line whose slope is 3/2 and that it passes through (2 , 5)
\((\stackrel{x_1}{2}~,~\stackrel{y_1}{5})\hspace{10em} \stackrel{slope}{m} ~=~ \cfrac{3}{2} \\\\\\ \begin{array}{|c|ll} \cline{1-1} \textit{point-slope form}\\ \cline{1-1} \\ y-y_1=m(x-x_1) \\\\ \cline{1-1} \end{array}\implies y-\stackrel{y_1}{5}=\stackrel{m}{ \cfrac{3}{2}}(x-\stackrel{x_1}{2}) \\\\\\ y-5=\cfrac{3}{2}x-3\implies {\Large \begin{array}{llll} y=\cfrac{3}{2}x+2 \end{array}}\)
Are you able to help me: Simplify (4x + 2)3
Answer:
64x^3 + 996x^2 + 48x + 8
Step-by-step explanation:
Answer:
12x+6
Step-by-step explanation:
\((4x+2)3\)
Use the distributive property to multiply (4x+2) by 3:-
\(12x+6\)
consider the following code segment, which is intended to store the sum of all multiples of 10 between 10 and 100, inclusive (10 20 ... 100), in the variable total. int x
The missing code that can be used to replace / missing code / so that the code segment works as intended is x >= 10.
The code segment is intended to store the sum of all multiples of 10 between 10 and 100, inclusive. The value of x starts at 100 and is decremented by 10 on each iteration of the loop, until it reaches 10. The sum of all the multiples of 10 between 10 and 100 is stored in the variable total.
The missing code in the while statement determines when the loop will stop. If we use x >= 10 as a replacement for / missing code /, the loop will run as long as x is greater than or equal to 10. When x reaches 10, the loop will stop.
Here's the complete code:
int x = 100;
int total = 0;
while(x >= 10)
{
total = total + x;
x = x - 10;
}
Learn more about looping and control structures here: https://brainly.com/question/14515869
#SPJ4
Your question is incomplete but probably the complete question is:
Consider the following code segment, which is intended to store the sum of all multiples of 10 between 10 and 100, inclusive (10 + 20 + ... + 100), in the variable total.
int x = 100;
int total = 0;
while( / missing code / )
{
total = total + x;
x = x - 10;
}
Which of the following can be used as a replacement for / missing code / so that the code segment works as intended?
A x < 100
B x <= 100
C x > 10
D x >= 10
E x != 10
?? geometry question
The measure of angle BGF from the given parallel lines is 108°.
Given that, measure of angle BGF=4x+28 and the measure of angle EHD = 2x+32.
1) From the given figure, angle BGF and angle EHC are interior alternate angles.
Angle FHC and angle EGA are corresponding angles.
Angle FHC and angle EGA are exterior alternate angles.
2) angle BGF+angle EHD=180°
3) 4x+28+2x+32=180°
6x+60=180
6x=120
x=20
Angle BGF=4x+28=108 °
Angle EHD = 2x+32
= 112°
Angle FHD=180-112=68°
Angle EGB=180-108=72°
Therefore, the measure of angle BGF from the given parallel lines is 108°.
Learn more about the parallel line angles here:
https://brainly.com/question/17237586.
#SPJ1
The library in Booneville collected $3,470 in overdue fees last year. This year, the library collected $347. What is the percent of decrease in the amount collected?
A fruit company delivers its fruit in two types of boxes: large and small. A delivery of 2 large boxes and 12 small boxes has a total weight of 223 kilograms. A delivery of 5 large boxes and 3 small boxes has a total weight of 139 kilograms. How much does each type of box weigh?
Answer:
A large box weighs 18.5 kilograms and a small box weighs 15.5 kilograms
Step-by-step explanation:
Create a system of equations where l is the weight of one large box and s is the weight of one small box.
2l + 12s = 223
5l + 3s = 139
Solve by elimination by multiplying the bottom equation by -4:
2l + 12s = 223
-20l - 12s = -556
Add these together and solve for l:
-18l = -333
l = 18.5
So, a large box weighs 18.5 kilograms. Plug in 18.5 as l into one of the equations, and solve for s:
5l + 3s = 139
5(18.5) + 3s = 139
92.5 + 3s = 139
3s = 46.5
s = 15.5
A large box weighs 18.5 kilograms and a small box weighs 15.5 kilograms.
9514 1404 393
Answer:
large: 18.5 kgsmall: 15.5 kgStep-by-step explanation:
Two equations for the total weight can be written in general form as ...
2L +12S -223 = 0
5L +3S -139 = 0
These can be solved using the "cross multiplication method" by computing three differences:
d1 = (2)(3) -(5)(12) = 6 -60 = -54
d2 = (12)(-139) -(3)(-223) = -1668 +669 = -999
d3 = (-223)(5) -(-139)(2) = -1115 +278 = -837
Then the weighs of the boxes are ...
1/d1 = L/d2 = S/d3
L = d2/d1 = -999/-54 = 18.5
S = d3/d1 = -837/-54 = 15.5
The large box weighs 18.5 kg; the small box weighs 15.5 kg.
_____
Additional comment
If the coefficients are written in two rows of four numbers, with the first repeated at the end, the pattern of differences can be seen to be (ad -cb) for [a, b] in the first row and [c, d] in the second row of a pair of adjacent columns. This method of solution is fully equivalent to solution using Cramer's Rule for a system of equations represented by a matrix equation.
Help help help help help help please
Answer:
566
Step-by-step explanation:
i hope its right
Fluency in the conversion of the metric system to the Imperial System is an essential skill in the nursing profession. Think of a situation in which negative effects have occurred due to incorrect dosage calculations? This situation could be a personal experience, the experience of someone you know, or a hypothetical. Explain how this error could have been avoided. How will you ensure that you avoid dosage errors due to metric conversions in your future career as a nurse?
In a hypothetical situation, an incorrect dosage calculation due to an error in metric system to Imperial System conversion could lead to potential harm to the patient. To avoid such errors, it is crucial to ensure accurate and precise conversions between the metric and Imperial systems. As a nurse, I will double-check my calculations, use reliable conversion charts or tools, and consult with colleagues or supervisors when in doubt. Additionally, ongoing education and training on dosage calculations and metric system conversions will be important to maintain proficiency and prevent errors in the future.
~~~Harsha~~~
Solve for the missing side length. Round to the nearest tenth.
5.8
5.2
5.4
5.6
Answer:
C) 5.4-------------------------
Given two legs of a right triangle and we need to find the hypotenuse.
Use Pythagorean theorem:
\(PQ = \sqrt{QR^2+PR^2}\)\(PQ = \sqrt{2^2+5^2} =\sqrt{29} =5.385 = 5.4\ (rounded)\)The matching choice is C.
What temperature should I cook this
fish or while or you or ne or sex
Answer:
350
Step-by-step explanation:
you should cook it between 350-365
What is the product of 3x(x^2+4)?
0 + 3x + 4
3+ 12
31
124
Answer: i honestly dont know this seems very complicated
Step-by-step explanation:
Answer:
3x^3+12x
Step-by-step explanation:
AB = 6cm, AC = 12cm
Calculate the length of CD.
Give your answer to 3 significant figures.
In the given diagram, the length of CD is 12.7 cm
TrigonometryFrom the question, we are to determine the length of CD
First, we will calculate the length of CB
From the Pythagorean theorem,
|CA|² = |CB|² + |BA|²
12² = |CB|² + 6²
144 = |CB|² + 36
|CB|² = 144 - 36
|CB|² = 108
|CB| = √108
|CB| = 6√3 cm
Now, to find CD
Using SOH CAH TOA
sin55° = |CB| / |CD|
sin55° = 6√3 / |CD|
|CD| = 6√3 / sin55°
|CD| = 12.7 cm
Hence, the length of CD is 12.7 cm
Learn more on Trigonometry here: https://brainly.com/question/11967894
#SPJ1
precalculus problem need help
1. <C= 90 degree
AC = 13.25 unit
<B= 60 degree
2. <C= 90 degree
AC = 13.
<B= 60 degree
1. Using Sine law
sin C/4 = sin 30/2 = sin B/ AC
so, sin C/4 = 1/4
sin C = 1
C= 90 degree
and, <B= 180 - 30- 90= 60 degree
So, sin 30/2 = sin 60/ AC
1/4 AC = √3/2
AC = 2√3
2. Using Sine law
sin 30/ 7.65 = sin B / 15.3
1/15.3 = sin B/15.3
sin B= 1
B = 90 degree
and, <C= 180 - 90 - 30 = 60
So, 1/15.3 = sin 60/ C
C = 13.25
Learn more about Sine law here:
https://brainly.com/question/17289163
#SPJ1
Please help!!
What is 9 x (46+70) 5 - 32 (40 - 219) =
9 x (46+70) 5 - 32 (40 - 219) = 11428
Using the BODMAS rule, we solve the brackets first,
9 x (46+70) 5 - 32 (40 - 219)
= 9 x 116 x 5 - 32 x -179
Next, we solve the multiplication signs
9 x 116 x 5 - 32 x -179
= 5520 - ( -5728)
Solving the subtraction sign, we get
5520 - ( -5728)
= 11428
Hence, the answer is 11428
To learn more about BODMAS :
https://brainly.com/question/723406
How do you solve this??
21 a(little 6) b(little 5)
————————————
7 a(little 3) b
\((21a^6b^5) / (7a^3b)\) simplifies to \(3a^3b^4.\)
To solve this problemWe can use the rules of exponents and simplify the terms with the same base.
Dividing the coefficients: 21 / 7 = 3.
For the variables, you subtract the exponents: \(a^6 / a^3 = a^(^6^-^3^) = a^3.\)
Similarly,\(b^5 / b = b^(5-1) = b^4\).
Putting it all together, the simplified expression is:
\(3a^3b^4.\)
Therefore, \((21a^6b^5) / (7a^3b)\) simplifies to \(3a^3b^4.\)
Learn more about rules of exponents here : brainly.com/question/11975096
#SPJ1
Given f(x)=5x and g(x) = 1/x-5 which value is in the domain of f g? (5x in the problem has that one symbol) (this is platoweb)
Answer:
f(x)=5x
g(x)=1/x-5
f(g)=5(1/x-5)
f(x)=5/x- 25
therefore domain is x=0
you sailed 0.032 units to the left and found treasure at 0.248 units find where the ship started
Many students brag that they have more than 150 friends on a social media website. For a class project, a group of students asked a random sample of 13 students at their college who used the social media website about their number of friends and got the data available below. Is there strong evidence that the mean number of friends for the student population at the college who use the social media website is larger than 150?
Required:
a. Find and interpret the test statistic value.
b. Report and interpret the P-value and state the conclusion in context. Use a significance level of 0.05.
c. What does the test statistic value represent?
1. The test statistic value is the difference between the sample mean and the null hypothesis value.
2. The test statistic value is the number of standard errors from the null hypothesis value to the sample mean.
3. The test statistic value is the expected mean of the differences between the sample data and the null hypothesis value.
4. The test statistic value is the number of standard deviations from the null hypothesis value to the sample mean.
Answer:
Step-by-step explanation:
The question is incomplete. The missing data is:
30, 155, 205, 235, 180, 235, 70, 250, 135, 145, 225, 230, 30
Solution:
Mean = (30 + 155 + 205 + 235 + 180 + 235 + 70 + 250 + 135 + 145 + 225 + 230 + 30)/13 = 163.5
Standard deviation = √(summation(x - mean)²/n
n = 13
Summation(x - mean)² = (30 - 163.5)^2 + (155 - 163.5)^2 + (205 - 163.5)^2+ (235 - 163.5)^2 + (180 - 163.5)^2 + (235 - 163.5)^2 + (70 - 163.5)^2 + (250 - 163.5)^2 + (135 - 163.5)^2 + (145 - 163.5)^2 + (225 - 163.5)^2 + (230 - 163.5)^2 + (30 - 163.5)^2 = 73519.25
Standard deviation = √(73519.25/13) = 75.2
We would set up the hypothesis test. This is a test of a single population mean since we are dealing with mean
For the null hypothesis,
µ ≤ 150
For the alternative hypothesis,
µ > 150
It is a right tailed test.
a) Since the number of samples is small and no population standard deviation is given, the distribution is a student's t.
Since n = 13,
Degrees of freedom, df = n - 1 = 13 - 1 = 12
t = (x - µ)/(s/√n)
Where
x = sample mean = 163.5
µ = population mean = 150
s = samples standard deviation = 75.2
t = (163.5 - 150)/(75.2/√13) = 0.65
The lower the test statistic value, the higher the p value and the higher the possibility of accepting the null hypothesis.
b) We would determine the p value using the t test calculator. It becomes
p = 0.26
Since alpha, 0.05 < than the p value, 0.26, then we would fail to reject the null hypothesis. Therefore, At a 5% level of significance, the sample data does not show significant evidence that the mean number of friends for the student population at the college who use the social media website is larger than 150.
c)
1.The test statistic value is the difference between the sample mean and the null hypothesis value.
Freemont run club surveyed a random sample of 30 of their members about their running habits
The reasonable estimate would be 25
How to solve for the estimateWe have to solve this using the rule of 3
9 out of 30 members said that they run more than 5 days a week.
We will form the equations
when 9 ran = 30 menbers
when n ran = 84 members
we will then cross multiply
84 x 9 = 30 x n
n = 25.2
When we round this, the reasonable estimate would be 25
Read miore on survey here:https://brainly.com/question/25257437
#SPJ1
Complete question
Freemont Run Club surveyed a random sample of 30 of their members about their running habits. Of the members surveyed, 9 said that they run more than 5 days a week.
There are 84 Freemont Run Club members.
Based on the data, what is the most reasonable estimate for the number of Freemont Run Club members who run more than 5 days a week?
Gloria Chavez and Ronald Flynn are the candidates for mayor in a large city. We want to estimate the proportion p of all registered voters in the city who plan to vote for Chavez with 95% confidence and a margin of error no greater than 0.03. How large a random sample do we need?
Answer: 832
Step-by-step explanation:
The sample size needed to estimate the proportion of all registered voters in the city who plan to vote for Chavez with a 95% confidence level and a margin of error of 0.03 is 832.
To calculate the sample size, we use the following formula: n = (1.96^2)p(1-p) / (margin of error)^2.
In this case, we can assume the population proportion p is 0.5, which is the midpoint between 0 and 1, so we can plug in 0.5 for p. We also plug in 0.03 for the margin of error.
After solving for n, we get 832 as the sample size needed. This means that we need a sample of 832 randomly selected registered voters in the city in order to estimate the proportion of all registered voters in the city who plan to vote for Chavez with 95% confidence and a margin of error no greater than 0.03.
Use factoring to solve the polynomial equation. Check by substitution or by using a graphing utility and identifying
x-intercepts.
8x4-32x² = 0
Rewrite the equation in factored form.
(Blank)=0
Then what is the solution pair?
The solution to the polynomial equation 8x⁴ - 32x² = 0 by factoring are x = 0 or x = -2 or x = 2
Using factoring to solve the polynomial equationTo solve the equation 8x⁴ - 32x² = 0 by factoring, we can factor out the greatest common factor of the terms:
8x²(x² - 4) = 0
Now we can use the difference of squares identity to factor the quadratic expression:
8x²(x + 2)(x - 2) = 0
Using the zero product property, we know that the product of two factors is zero if and only if at least one of the factors is zero.
Therefore, we can set each factor equal to zero and solve for x:
8x² = 0 or x + 2 = 0 or x - 2 = 0
Solving for x, we get:
x = 0 or x = -2 or x = 2
So the solution set for the equation is {0, -2, 2}.
To check the solution, we can substitute each value into the original equation and verify that it equals zero.
Read more about polynomial at
https://brainly.com/question/4142886
#SPJ1
What is (7-2)^2+3/ 1/6
( / ) this means divide and (^) that means to the power
Answer:
ewannnnnnnnnnnnnn
Step-by-step explanation:
d q den alam d pa namin pinagaaralan yan, xenxia na godbless
What is the value of the expression below?
14+2+3(4)-(6-1-3)
1.10/2
2.15-12
3.30-1/
4.36-1/
THe value of the expression using BODMAS rule is 26
What is BODMAS rule ?The abbreviation BODMAS, which stands for "Brackets, Order of powers or roots, Division, and Multiplication," is followed by the BODMAS rule. A stands for addition and S for subtraction. According to the BODMAS rule, multi-step mathematical statements must be solved in the BODMAS order from left to right.
The order of operations, or BODMAS, is a method for carrying out operations in an arithmetic statement. Math is all about logic, and there are several established laws that help us with our calculations. BODMAS is one of the established rules for consolidating multiple operator expressions.
An expression or equation in mathematics has two parts:
NumbersOperatorsA character known as an operator joins two integers to form an expression or equation. The four most often used operators in mathematics are addition (+), subtraction (-), multiplication (*), and division (*/*). Finding the solution to mathematical statements or equations with just one operator is usually rather easy.
The expression is 14 + 2 + 3(4) - (6-1-3) = 14 + 2 + 12 - 2 = 26
To learn more about BODMAS rule refer to :
https://brainly.com/question/16738857
#SPJ1
Cliff takes out a $5,000 personal loan with 7
fixed annual interest compounded monthly to pay for his wedding. He repays the loan in 2 year.s
How much total interest does Cliff pay on his loan?
Cliff pays a total interest of approximately $679.90 on his $5,000 loan.
To calculate the total interest paid on the loan, we need to use the formula for compound interest:
\(A = P(1 + r/n)^{(nt)}\)
Where:
A is the final amount (loan amount + interest)
P is the principal (loan amount)
r is the annual interest rate (in decimal form)
n is the number of times interest is compounded per year
t is the number of years
Given that Cliff takes out a $5,000 loan with a fixed annual interest rate of 7% compounded monthly, we can substitute the values into the formula:
P = $5,000
r = 7% = 0.07
n = 12 (monthly compounding)
t = 2 years
\(A = 5000(1 + 0.07/12)^{(12 \times 2)\)
Calculating this expression:
A ≈ 5000\((1.00583)^{(24)\)
A ≈ 5000(1.13598)
A ≈ 5679.90
The final amount (A) is the loan amount plus the total interest paid. Therefore, to find the total interest paid, we subtract the principal (P) from the final amount (A):
Total Interest = A - P
Total Interest = 5679.90 - 5000
Total Interest ≈ $679.90
For similar question on total interest.
https://brainly.com/question/29415701
#SPJ8
circle O and circle P intersect at A and B. Show that OP is the perpendicular bisector of the common chord AB
Answer:
Step-by-step explanation:
Let two circles O and O' intersect at two points A and B so that AB is the common chord of two circles and OO' is the line segment joining the centres
Let OO
′
intersect AB at M
Now Draw line segments OA,OB,O
′
AandO
′
B
In ΔOAO
′
andOBO
′
, we have
OA=OB (radii of same circle)
O
′
A=O
′
B (radii of same circle)
O
′
O=OO
′
(common side)
⇒ΔOAO
′
≅ΔOBO
′
(SSS congruency)
⇒∠AOO
′
=∠BOO
′
⇒∠AOM=∠BOM......(i)
Now in ΔAOM and ΔBOM we have
OA=OB (radii of same circle)
∠AOM=∠BOM (from (i))
OM=OM (common side)
⇒ΔAOM≅ΔBOM (SAS congruncy)
⇒AM=BM and∠AMO=∠BMO
But
∠AMO+∠BMO=180°
⇒2∠AMO=180°
⇒∠AMO=90°
Thus,AM=BM and∠AMO=∠BMO=90°
HenceOO is the perpendicular bisector of AB.
Which of the following ratios is not equivalent to the rest: *
6 to 8
54 : 72
36 : 56
3 to 4
Answer:
36:56
Step-by-step explanation:
Answer: C 34:55
Step-by-step explanation:
start with 6:8 that’s the first one multiply by 9 on each side you get 54:72 so that’s the same and then 6:8 divide by 2 and you get 3:4 but for 36:56 you’d have to multiply by 6 and that would give you 36:48 not 36:56
The circumference of a circle is 14 what is the radius of the circle?
circumference= 14
to find:the radius of the circle.
solution:\(r = \frac{c}{2\pi} \)
\( r= \frac{14}{2 \times \pi} \)
\(r = 2.22817\)
\(r = 2.23\)
hence the radius of the circle is 2.23
PLEASE ANSWER NOW I NEED THIS ASAP FOR 100 POINTS!!!!
\(1\frac{3}{4}\) feet as a multiplication expression using the unit, 1 foot, as a factor is \(1\frac{3}{4}\)×1.
The given fraction is \(1\frac{3}{4}\).
\(1\frac{3}{4}\) feet can be written as a multiplication expression as follows: 1 foot × 1 3/4. This is because \(1\frac{3}{4}\) is the same as 1 + 3/4.
Furthermore, 3/4 can be written as 0.75, which is the same as 0.75 × 1 foot.
Therefore, the multiplication expression is 1 foot × \(1\frac{3}{4}\) = 1 foot × (1 + 0.75) = 1 foot × 1 + 1 foot × 0.75 = 1 foot + 1.75 feet.
Therefore, \(1\frac{3}{4}\) feet as a multiplication expression using the unit, 1 foot, as a factor is \(1\frac{3}{4}\)×1.
Learn more about the multiplication here:
https://brainly.com/question/1562995.
#SPJ1
Step-by-step explanation:
1ft=12in
1¾ft=x
x=12×7/4=21in
1¾ft=1¾×1 ft
Find the value of x.
110
(4x +90)°
x = [?1°
x=5
steps
they are vertical angles
they are equal
4x+90=110
4x=20
x=5
Answer:
Step-by-step explanation:
9900
A survey is being conducted in a city with 1 million residents. It would be far too
expensive to survey all of the residents, so a random sample of size 1000 is chosen
(in practice, there are many challenges with sampling, such as obtaining a complete
list of everyone in the city, and dealing with people who refuse to participate). The
survey is conducted by choosing people one at a time, with replacement and with equal
probabilities.
(a) Explain how sampling with vs. without replacement here relates to the birthday
problem.
(b) Find the probability that at least one person will get chosen more than once.
Answer: Find answers in the attached documents
Step-by-step explanation:
In this case, we have to use the knowledge of probability and calculate the chance of the event to occur, so we have to:
A) No have problem, because every person can be chosen once or not be chosen at all.
B) The event that everybody has been chosen maximally once is equal to the event that we have chosen the sample without replacement.
So that way, we have to analyze to know how the event will occur, so:
A)In this case we choose the sample with replacement, so the probability that there will be birthday match.
B) Using the formula, we have:
\(P=1-P\\=1-\frac{(10^6/10^3)}{(10^6)^{(10^3)}}\)
See more about probability at brainly.com/question/795909