what's the answer? pls help

What's The Answer? Pls Help

Answers

Answer 1

Answer:

The slope is 0

Step-by-step explanation:

The slope is the change of y over the change in x. Since y doesn't change at all, it's 0 over 3. 0/3 is just 0, so the slope is 0.

Answer 2

Answer:

undefined

Step-by-step explanation:

slope = y2 - y1 / x2 - x1

slope = 5 - 5 / 6 - 3

slope = 0/3

slope = undefined

Undefined because all y coordinates are the same number: 5


Related Questions

The conditional statement below is true. If possible, write the biconditional statement.

If 2x = 18, then x = 9.

Answers

The biconditional statement for the given conditional statement would be:

2x = 18 if and only if x = 9.

The given conditional statement "If 2x = 18, then x = 9" can be represented symbolically as p → q, where p represents the statement "2x = 18" and q represents the statement "x = 9".

To form the biconditional statement, we need to determine if the converse of the conditional statement is also true. The converse of the original statement is "If x = 9, then 2x = 18". Let's evaluate the converse statement.

If x = 9, then substituting this value into the equation 2x = 18 gives us 2(9) = 18, which is indeed true. Therefore, the converse of the original statement is true.

Based on this, we can write the biconditional statement:

2x = 18 if and only if x = 9.

The biconditional statement implies that if 2x is equal to 18, then x must be equal to 9, and conversely, if x is equal to 9, then 2x is equal to 18. The biconditional statement asserts the equivalence between the two statements, indicating that they always hold true together.

In summary, the biconditional statement is a concise way of expressing that 2x = 18 if and only if x = 9, capturing the mutual implication between the two statements.

for such more question on conditional statement

https://brainly.com/question/27839142

#SPJ8



In 1990, a magazine collected data and published an article evaluating freezers. It listed 45 models, giving the brand, cost (dollars), size (cu ft), type, the ratin

(good, excellent, etc.), and repair history for that brand (percentage requiring repairs over the past 5 years).

Identify the 5 W's.

Who:

What:

When:

Where:

How:

Why:

Answers

Complete question is;

In 1990​, a magazine collected data and published an article evaluating dryers. It listed 45 ​models, giving the​ brand, cost​ (dollars), size​ (cu ft),​ type, estimated annual energy cost​ (dollars), an overall rating​ (good, excellent,​ etc.), and repair history for that brand​ (percentage requiring repairs over the past 5​ years).

The​ W's are​ Who, What,​ When, Where,​ Why, and hoW.

1) Identify the Who. Choose the correct answer below.

A. 45 models of dryers

B. Dryers

C. Brands of dryers

D. Size of dryers dryers

2) Identify the What. Choose the correct answer below.

A. ​Brand, type, overall rating

B. ​Brand, cost,​ size, type, estimated annual energy​ cost, overall​ rating, repair history

C. Cost, size, estimated annual energy​ cost, repair history

D. ​Brand, cost,​ size, type

3) Identify the When. Select the correct choice below​ and, if​ necessary, fill in any answer boxes within your choice.

A. The data were recorded in 1990.

B. The information is not provided.

4) Identify the Where. Choose the correct answer below.

A. The 45 models of dryers

B. The information is not provided.

C. The population of dryers

5) Identify the Why. Choose the correct answer below.

A. To provide information to the magazine's readers

B. To write an article about dryers

C. To compare the size of the dryers

D. To collect information about dryers

6) Identify the hoW. Choose the correct answer below.

A. The different dryers belonged to the​ magazine's employees.

B. The dryers were chosen at random.

C. The information is not provided.

7) Identify each variable as either categorical or quantitative.

Brand

Categorical

Quantitative

Estimated annual energy cost

Quantitative

Categorical

Cost

Categorical

Quantitative

Overall rating

Categorical

Quantitative

Size

Quantitative

Categorical

Repair history

Quantitative

Categorical

Type

Categorical

Quantitative

8) For each quantitative​ variable, determine the units in which it was measured.

Cost

Dollars

Not specified

Pounds

Estimated annual energy cost

Dollars

Pounds

Not specified

Size

Cubic inches

Cubic feet

Feet

Inches

Not specified

Repair history

Years

Percentages

Not Specified

Answer:

All answered below.

Step-by-step explanation:

1) Option A: 45 models of dryers

2) Option B: ​Brand, cost,​ size, type, estimated annual energy​ cost, overall​ rating, repair history

3) Option A: The data were recorded in 1990.

4) Option B: The information is not provided.

5) Option A: To provide information to the​ magazine's readers

6) Option C. The information is not provided.

7) - Brand variable is Categorical

- Estimated annual energy cost variable is Quantitative

- Cost variable is Quantitative

- Overall rating variable is Categorical

- Size variable is Quantitative

- Repair history variable is Quantitative

- Type variable is Categorical

8) - cost​ is in dollars)

- estimated annual energy cost​ is in dollars

- size​ is in cu. ft

- repair history is in percentages

You are going to conduct coin toss experiment using fair; evenly balanced coin. Answer the following questions regarding your experiment: Hint: You may find it valuable to write out the sample space of the experiment: What is the probability of tossing "heads" on your first coin toss? 0.50 What is the probability of tossing "heads" on each of your first two tosses?

Answers

The probability of tossing "heads" on each of your first two tosses is 0.25

Probability = n(E)/n(S)

Where E is the possibility of an event occurring

and S is the sample space i.e., the total number of possible outcomes.

Probability is the measure of how likely an event can happen. The probability of any event lies between 0 and 1 only.

The sample space for when you toss one coin is - H, T

So the probability to get an H is= 1/2

=0.5

Similarly, The sample space for when you toss two coins is HH, TT, HT, TH

So, the probability to get an H on each of your first two tosses is = 1/4

=0.25

Therefore, The probability of tossing "heads" on each of your first two tosses is 0.25

To know more about Probability visit:

https://brainly.com/question/24756209

#SPJ4

as we learned in class, an important component of non-linear least squares is the jacobian matrix, the set of partial derivatives with respect to parameters at each data point. in def calc jacobian(x,p), you will need to implement the calculation of the jacobian matrix for the function: where 'a' is the first parameter (p[0,0]), 'b' is the second (p[1,0]), an so on...

Answers

The set of partial derivatives with respect to parameters at each data point.

def calc_jacobian(x, p):

   jacobian = np.zeros([len(x), len(p)])

   for i in range(len(x)):

       for j in range(len(p)):

           jacobian[i][j] = (2 * p[j] * x[i]**j)

   return jacobian

What is partial derivatives?

Partial derivatives are a type of derivative in calculus that are used to measure the rate of change of a function with respect to a single independent variable, while holding the other variables constant. They are denoted with a symbol called a partial derivative operator, which is a curved d with a line over it. Partial derivatives are used to calculate derivatives in multivariable functions and to find the maximum or minimum points of a function. Partial derivatives can also be used to analyze the behavior of functions near a point, or to solve equations involving multiple variables.

To learn more about partial derivatives
https://brainly.com/question/2293382
#SPJ4

Given the radius of a circle is 7 cm, what is the circumference?

Answers

Answer:

14π or 43.96

Step-by-step explanation:

C = 2πr and we know that r = 7 so C = 14π or 43.96.

use the graph of f(x)=x^2 to write an equation for the function represented by each graph

use the graph of f(x)=x^2 to write an equation for the function represented by each graph

Answers

The image of the function f(x) = x² is equal to g(x) = x² - 1.

How to derive the equation of a graph based on a parent function

In this problem we find the definition of a quadratic equation f(x) = x² and the graph of the image, whose expression must be derived. By direct inspection, we notice that the image is a vertical translation of the parent function. Vertical translations are defined by the following formula:

f(x) → f(x) + k, k > 0 for an upward translation.

If we know that f(x) = x² and k = - 1, then the equation for the image is:

g(x) = x² - 1

To learn more on translations: https://brainly.com/question/12463306

#SPJ1

What graph shows the solution to this system
y >= 3x + 2
-4x + 3y > 12




(Less than or equal to: >=

What graph shows the solution to this system y >= 3x + 2-4x + 3y > 12(Less than or equal to: >=

Answers

Answer:

C

Step-by-step explanation:

first

let 3x-y= -2

here after rearranging fin the different values of x and y w. r. t the equation then shade the upper region of the line

similarly do with the second one equation and then mark the line as dotted and shade the below part of the equation of the line and then find the common shaded area

Write your answer as an integer or as a decimal rounded to the nearest tenth. I need help on this question please anyone?!

Write your answer as an integer or as a decimal rounded to the nearest tenth. I need help on this question

Answers

After considering all the given data we come to the conclusion that the value of w is 7.2 units.

Given we have a triangle XWV, that has only base length determined that is 10 units.
Let us apply the law of sines to evaluate the value of side w. The law of sines projects that the ratio of the length of a side of a triangle to the sine of the angle opposite that side is the same for all three sides.
w / sin(36°) = 10 / sin(84°)
Evaluating for w, we get:
w = (10 × sin(36°)) / sin(84°)
w is approximately equal to 7.2 units.
To learn more about triangle
https://brainly.com/question/28470545
#SPJ1

i need help i dont quite understand this and would be happy if someone helped​

i need help i dont quite understand this and would be happy if someone helped

Answers

Answer: 2, 3, 6, 7

Step-by-step explanation:

Supplementary is two angles adding up to 180. The angles above with angle 5 add up to 180.

How do i factorise the expression x⁹ + y⁹ ?​

Answers

That’s how you factorise
How do i factorise the expression x + y ?

The measure of angle 1 is greater than 97° and at most 115°. Graph the possible values of x. (9x + 7)

The measure of angle 1 is greater than 97 and at most 115. Graph the possible values of x. (9x + 7)

Answers

ANSWER and EXPLANATION

The measure of angle 1 is greater than 97° and at most 115° (that means less than or equal to)

This means that:

\(\begin{gathered} <1\text{ > 97}\degree \\ <1\text{ }\leq\text{ 115}\degree \end{gathered}\)

From the diagram, angle 1 is equal to (9x + 7). This is because they are alternate interior angles.

This therefore means that:

\(\begin{gathered} 9x\text{ + 7 > 97}\degree \\ \text{and} \\ 9x\text{ + 7 }\leq\text{ 115}\degree \end{gathered}\)

Solve for x:

\(\begin{gathered} 9x\text{ > 97 - 7} \\ 9x\text{ > 90} \\ \text{Divide through by 9:} \\ x\text{ > 10} \\ \text{and} \\ 9x\text{ }\leq\text{ 115 - 7} \\ 9x\text{ }\leq\text{ 108} \\ \text{Divide through by 9:} \\ x\text{ }\leq\text{ 12} \\ \Rightarrow\text{ 10 < x }\leq12 \end{gathered}\)

Therefore, the number line graph of the possible range of values of x is:

That is the number line.

The measure of angle 1 is greater than 97 and at most 115. Graph the possible values of x. (9x + 7)

A truck is shipping jugs of water and cases of paper towels. A jug of drinking water weighs 40 pounds and a case of paper weighs 16 pounds. The truck can carry 2000 pounds of cargo altogether. How can I graph this?

Answers

Answer:

40w + 16p ≤ 2000

Step-by-step explanation:

let 'w' = jugs of water

let 'p' = cases of paper

the area of shading will include negative values which you can ignore because those values do not apply to this problem

Solve the quadratic by factoring.
2x²14x = -9x+7

Answers

Answer:  x= -7/2     x=1

Step-by-step explanation:

You first need to bring all terms to 1 side and make =0

Assuming there is a + in front of 14

2x²+14x=-9x+7

2x²+5x-7=0      

multiply the first and last find 2 numbers that multiply to that number and add to the middle

+7 and -2   multiply to -14 but add to 5  substitute those numbers for the 5x

2x²+7x-2x-7    see how the 7x-2x is actually 5x. Just making it look diff

(2x²+7x)(-2x-7)  put parentheses around the 1st 2 terms and last to group.  This is not your factoring.  you are going to take the GCF (greatest common factor from both)

x(2x+7)-1(2x+7)   if the items in the parentheses are same, you did a good job so far. What is in the parenthesesis one of your factors and whatever leftover is your other

(2x+7)(x-1)    =0   now set each =0 and solve for x

2x+7=0            x-1=0

2x=-7

x= -7/2             x=1

Pilar has 40 shells in her collection. She goes to the beach. She collects 6 more shells in the morning and 3 more shells in the afternoon. What is the percent change in Pilar's shell collection from the beginning of the day to the end? Show your work.​

Answers

The percent change in Pilar's shell collection from the beginning of the day to the end is,  22.5%

What is the percentage?

Percentage is a way to express a number as a fraction of 100. It is often used to represent ratios and proportions in a more convenient and understandable form, especially in financial and statistical contexts. For example, 50% means 50 per 100, or half of a given quantity. It is denoted using the symbol "%".

Given that,

Pilar has 40 shells in her collection.

She collects 6 more shells in the morning and 3 more shells in the afternoon.

The percent change in Pilar's shell collection from the beginning of the day to the end = ?

At the beginning of the day, Pilar has 40 shells.

In the morning, she collects 6 more shells, bringing her total to

= 40 + 6

= 46 shells.

Then, in the afternoon, she collects 3 more shells, bringing her total to

=46 + 3

= 49 shells.

To find the percent change in Pilar's shell collection from the beginning of the day to the end, we can use the formula:

percent change = (final value - initial value) / initial value * 100%

Plugging in the values we have:

percent change = (49 - 40) / 40 x 100%

percent change = 9 / 40 x 100%

percent change = 22.5%

Therefore, there is a 22.5% increase in Pilar's shell collection from the beginning of the day to the end.

To know more about Percentage check:

https://brainly.com/question/29306119

#SPJ1

Find the length of the other two sides isosceles right triangle

Find the length of the other two sides isosceles right triangle

Answers

Answer:

x=5 and h=5*sqrt(2)

Step-by-step explanation:

It's an isosceles right triangle, x=5. Use Pythagoras and compute h

AB and AD are tangent to circle C. Find the length of AB, if AB = 8x and AD = x + 9. Round your answer to 2 decimal places.​

Answers

To find the length of AB, we need to use the properties of a tangent to a circle.

When a line is tangent to a circle, it forms a right angle with the radius drawn to the point of tangency. This means that triangle ABD is a right triangle with AB as the hypotenuse.

We can use the Pythagorean theorem to find the length of AB:

AB^2 = AD^2 + BD^2

Since AD = x + 9 and BD = 8x - (x + 9) = 8x - x - 9 = 7x - 9, we can substitute these values into the equation:

(8x)^2 = (x + 9)^2 + (7x - 9)^2

64x^2 = x^2 + 18x + 81 + 49x^2 - 126x + 81

64x^2 = 50x^2 - 108x + 162

14x^2 + 108x - 162 = 0

Dividing the equation by 2, we get:

7x^2 + 54x - 81 = 0

Using the quadratic formula:

x = (-b ± √(b^2 - 4ac)) / (2a)

a = 7, b = 54, c = -81

x = (-54 ± √(54^2 - 4 * 7 * -81)) / (2 * 7)

x = (-54 ± √(2916 + 2268)) / 14

x = (-54 ± √5184) / 14

x = (-54 ± 72) / 14

Now we solve for x:

Case 1: x = (-54 + 72) / 14 = 18 / 14 = 9 / 7

Case 2: x = (-54 - 72) / 14 = -126 / 14 = -9

Since the length of a segment cannot be negative, we discard the second case and focus on the positive solution.

Therefore, x = 9/7.

Substituting this value back into AB = 8x:

AB = 8 * (9/7) = 72/7 ≈ 10.29

Rounding to 2 decimal places, the length of AB is approximately 10.29 units.

Answer:

To find the length of AB, we can use the property that two tangents to a circle from the same external point are equal. This means that AB = AD. Substituting the given values, we get:

8x = x + 9

Solving for x, we get:

x = 1.5

Therefore, AB = 8x = 8(1.5) = 12.

To check our answer, we can use the Pythagorean theorem on triangle ABD, since AB is perpendicular to BD at the point of tangency. We have:

AB^2 + BD^2 = AD^2

Substituting the values, we get:

12^2 + BD^2 = (1.5 + 9)^2

Simplifying, we get:

BD^2 = 56.25

Taking the square root of both sides, we get:

BD = 7.5

Hence, the length of AB is 12 and the length of BD is 7.5.

MARK AS BRAINLIEST!!!

SOLVE ASAP Point theif = ban!

SOLVE ASAP Point theif = ban!

Answers

Answer:

x-25y-50

Step-by-step explanation:

simplifying an expression means getting rid of the parantheses and writing it in the simplest form

5(\(\frac{1}{5} x-5y-10)\)=

\(5*\frac{1}{5} x-5*5y-10*5\\x-25y-50\)

Answer:

\(x-25y-50\)

Step-by-step explanation:

\(5\left(\frac{1}{5}x-5y-10\right)\)

\(5\cdot \frac{1}{5}x-5\cdot \:5y-5\cdot \:10\) .......multiply 5 with everything inside the bracket

\(x-25y-50\)     ...........final answer.

what's 0/0, with full steps​

Answers

Answer:

undefined

Step-by-step explanation:

division by zero is undefined

Division Property of zero

For any nonzero real number a

The quotient of "a" and 0 is undefined. That is a/0 is undefined

S=∑ n=1[infinity] 2+11​ 1. Use the integral test to show the series is convergent 2. Find the sum of the first 5 terms 3. What is the error using s5 as an estimate for S ?

Answers

The integral test compares an infinite sum to an improper integral and is the test that can only be applied when we are considering a series whose terms are all positive.

1) For a series ∑n=1∞aₙ to converge, the nth term an must satisfy aₙ→0

 as n→∞.

Therefore, from the algebraic limit properties of sequences,

lim k→∞a k = lim k→∞(S k−S k−1)=limk→∞S k−lim k→∞S k−1 = S−S = 0.

Therefore, if  ∑n=1∞aₙ converges, the nth term an→0 as  n→∞. An important consequence of this fact is the following statement:

If aₙ↛0 as n→∞,∑n=1∞aₙ diverges

The integral test compares an infinite sum to an improper integral. It is important to note that this test can only be applied when we are considering a series whose terms are all positive.

2) The sum of the areas of the rectangles is less than the sum of the area of the first rectangle and the area between the curve f(x)=1/x2 and the x -axis for x≥1

Since the area bounded by the curve is finite, the sum of the areas of the rectangles is also finite.

To learn more about integral test, click here:

brainly.com/question/28157842

#SPJ4

Use the geometric mean (altitude) theorem. What is the
value of m?
4
2v7
4V10
160

Answers

Answer:

The Answer is 4V10

Step-by-step explanation:

Please answer the question in the photo

Please answer the question in the photo

Answers

Answer:

6x^2-17x+12

Step-by-step explanation:

took the test

2x^4+7x^3+2x^2+5x-4/X^2+3x-1What is the quotient and remainder?

Answers

Here's the answer and the procedure:

2x^4+7x^3+2x^2+5x-4/X^2+3x-1What is the quotient and remainder?

statistics...relative frequency​

statistics...relative frequency

Answers

The relative frequency for the class with lower class limit 15 is:

R = 10/41 = 0.244

How to find the relative frequency?

Let's suppose you have a set of N elements, such that K of these N elements has a given property.

Then the relative frequency for the elements with that given property is:

R = K/M

By looking at the table, we can see that the total number of students is:

T = 10 + 6 + 5 + 9 + 3 + 8 = 41

And 10 belong to the class with the lower class limit 15, then the relative frequency for that class is:

R = 10/41 = 0.244

If you want to learn more about relative frequency:

https://brainly.com/question/3857836

#SPJ1

question in the picture ​

question in the picture

Answers

Answer:

a) 34 students scored below an 81%

b) Interval 81-100

c) 34.6 rounded to 35% of students scored no higher than 60%

d) 38.4% of students scored at least 81%

Step-by-step explanation:

a) the frequency refers to the number of students and each of the bars shows how many students got into a certain range of scores. So you would count the frequency for 4 of the ranges except for the last one.

b) interval 81-100 contained the most scores as it has the highest frequency

c) 2+4+12= 18 students scored no higher than 60%, the total number of students is 52 students. So to get the answer you would divide

18/52= 0.346 x 100= 34.6= 35%

d) 20/52= 0.384 x 100= 38.4%

A test has 20 questions. If Peter gets 80% correct, how many questions did Peter miss?

Answers

Answer:

4

Step-by-step explanation:

20 x 0.80

16 - 20

Answer:

4 questions

Step-by-step explanation:

4 wrong = 80%

The highest scores at a gymnastics meet were 9.675, 9.25, 9.325, and 9.5. Write the scores in order from least to greatest.

Answers

Answer:

Step-by-step explanation:

9.25, 9.325, 9.5, 9.675,

when its comes to interest,most CDs will allow which of the following options?
a. Unlimited withdraws of interest
b. Periodic interest payout
c. loans against principal
d. Withdrawal of principal

Answers

When it comes to interest, most Certificates of Deposit (CDs) will allow periodic interest payouts. So, correct option is B.

A CD is a type of savings account that allows you to earn a fixed interest rate on your deposit for a specific period of time, called the term. Typically, the longer the term of the CD, the higher the interest rate offered.

However, during the term of the CD, the funds are locked in, meaning that you cannot withdraw the principal without incurring a penalty.

While some CDs may allow for unlimited withdrawals of interest, this is not common, and may still come with restrictions or penalties. Loans against principal are also not typically allowed with CDs, as the funds are meant to be held for a set term.

Therefore, the most common option available for CD holders is to receive periodic interest payouts, which can be monthly, quarterly, or annually, depending on the terms of the CD. This allows the CD holder to earn interest on their deposit while still receiving some income during the term of the CD.

So, correct option is B.

To learn more about interest click on,

https://brainly.com/question/12456231

#SPJ1

21. Find the value of x.

22. Find the value of x.

21. Find the value of x. 22. Find the value of x.

Answers

Answer:

62° & 54°

Step-by-step explanation:

Answer 21 :-

We know that the measure of a straight line is 180° .

x + 118° = 180° x = 180° - 118° x = 62°

Answer 22:-

2x + 1 + 71 = 180 2x = 180 - 72 2x = 108 x = 54°

Answer:

62° & 54°

Step-by-step explanation:

Answer 21 :-

We know that the measure of a straight line is 180° .

x + 118° = 180°

=> x = 180° - 118°

=> x = 62°

Answer 22:-

2x + 1 + 71 = 180

=> 2x = 180 - 72  

=> 2x = 108

=> x = 54°

write an equation in slope intercept form that passes through the given point and is perpendicular to the graph of given equation (1,-2) y=5x+4

Answers

The equation of the line perpendicular to y = 5x + 4, passing through the point (1, -2), is y = (-1/5)x - 9/5.

To find an equation in slope-intercept form that passes through the point (1, -2) and is perpendicular to the given equation y = 5x + 4, we need to determine the slope of the perpendicular line.

The given equation y = 5x + 4 is already in slope-intercept form (y = mx + b), where m represents the slope. In this case, the slope of the given line is 5.

To find the slope of a line perpendicular to this, we use the fact that the product of the slopes of two perpendicular lines is -1. So, the slope of the perpendicular line can be found by taking the negative reciprocal of the slope of the given line.

The negative reciprocal of 5 is -1/5.

Now that we have the slope (-1/5) and a point (1, -2), we can use the point-slope form of the equation:

y - y1 = m(x - x1)

Substituting the values:

y - (-2) = (-1/5)(x - 1)

Simplifying:

y + 2 = (-1/5)(x - 1)

To convert the equation into slope-intercept form (y = mx + b), we need to simplify it further:

y + 2 = (-1/5)x + 1/5

Subtracting 2 from both sides:

y = (-1/5)x + 1/5 - 2

Combining the constants:

y = (-1/5)x - 9/5

Therefore, the equation of the line perpendicular to y = 5x + 4, passing through the point (1, -2), is y = (-1/5)x - 9/5.

For more question on perpendicular visit:

https://brainly.com/question/1202004

#SPJ8

Find the area of the triangle.
22 in.
29 in.
Area = [?] in.

Answers

Answer:

319 in

Step-by-step explanation:

22x29=638

638÷2=319

Other Questions
please help, I don't understand chemistry at all. Density is a physical property of a molecule thats measured as mass per unit volume.(a) Given that density is usually expressed in the units of g/cm3, calculate the density of a cube of plastic thathas a mass of 2.331 g and an edge length of 1.500 cm (volume of a cube is V = l^3). A person invests 6000 dollars in a bank. The bank pays 6.5% interest compounded annually. To the nearest tenth of a year, how long must the person leave the money in the bank until it reaches 8300 dollars? A=P\left(1+\frac{r}{n}\right)^{nt} A=P(1+ n r ) nt water (10 oc) flows with a speed of 2 m/s through a horizontal run of pvc pipe. the length of the pipe is 50 m, and the pipe is schedule 40 with a nominal diameter of 2.5 inch. calculate: a) the pressure drop in kpa b) the head loss in meters c) the power in watts needed to overcome the head loss MORAL DILEMMA QUESTIONOVER THE SUMMER, YOU BECAME FRIENDS WITH A PERSON WHO MOVED TO YOUR TOWN. YOU SEE THIS PERSON AS TRUSTING AND EASY TO GET ALONG WITH. YOU HAVE THE SAME INTEREST, LIKE THE SAME MUSIC AND MOVIES, AND HAVE HAD A LOT OF FUN TOGETHER.HOWEVER, YOUR NEW FRIEND IS NOT ATTRACTIVE AND TALKS VERY LOUD. WHEN SCHOOL STARTS, YOU GET EMBARRASSED BY THE WAY YOUR FRIEND ACTS. YOUR FRIENDS AT SCHOOL ARE STARTING TO TALK ABOUT YOU AND YOUR NEW FRIEND. DO YOU REMAIN FRIENDS OR DROP THE RELATIONSHIP? Which was the better city-state in ancient Greece, Athens or Sparta? Please help me!It is timed!I will give brainliest! Zebra mussels (Dreissena polymorpha) are originally native to Russia. In the mid-1980's, zebra mussels were introduced into the Great Lake region of the United States where they rapidly reproduced; females can produce up to one million eggs per year. In one zebra mussel population, most of the individuals have dark, zebra-striped shells (genotype AA). However, solid light-colored shells (genotype aa) occur in 1 of every 10,000 individuals. The solid light-colored shells indicate mussels that are not hardy in cold water temperatures ( Calculate total-revenue data from the demand schedule in review question 1. Graph total revenue below your demand curve. Generalize about the relationship between price elas- ticity and total revenue. LO6.2 Find a decomposition of a=5,1,1 into a vector c parallel to b=6,0,6 and a vector d perpendicular to b such that c+d=a.I understand how to multiply vectors, I'm lost at decomposition so I would really appreciate if you could explain how to actually do that. Thank you. How much total gross cash inflow will occur (i.e. the debits to Cash) for a $1,000, 6%, 6-year bond, if it is purchased at $1,050 Let In M = s 12x + 30 dx x2 + 2x - 8 What is the value of M? M? None of the Choices O C(x-4)2(x+2)! 0 (x+4) 3 +C (x-2) O C(x+4) 3(x-2) Live Trap Corporation received the following data for its rodent cage production unit. OUTPUT INPUT 50,025 cages Production time 652 labor hours Sales price: $3.60 per unit Wages $ 7.60 per hour Raw materials (total cost) $ 31,550 Component parts (total cost) $ 15,900 Find the total productivity in Units Sold and Dollars of Sales per Dollar Input. (Round your answers to 2 decimal places Choose the statements that CORRECTLY describe Georgia's transition to a Royal colony from the Trustee periodWomen would be allowed to own landSlavery was not allowed when Georgia was a Royal Colony.Alcohol was prohibited when Georgia became a Royal ColonyUndesirable settlers were encouraged to claim lands in Georgia's western frontier.James Oglethorpe became Georgia's first royal governor Suppose regular gas cost $1.29 per gallon and premium unleaded gas cost $1.84 per gallon, If the station sold $79.98 of regular gas how many gallon of premium unleaded gas must be sold to have an average selling price of $1.608 per gallon Qu quieres d comer? Find the relative maximum and minimum values. f(x,y)=x^2+y^2+16x14y Select the correct choice below and, if necessary, fill in the answer boxes to complete your choice. A. The function has a relative maximum value of f(x,y)= _____ at (x,y)= _____(Simplify your answers. Type exact answers. Type an ordered pair in the second answer box.)B. The function has no relative maximum value.Select the correct choice below and, if necessary, fill in the answer boxes to complete your choice.A. The function has a relative minimum value of f(x,y) = _____ at (x,y)= _____ (Simplify your answers. Type exact answers. Type an ordered pair in the second answer box.) B. The function has no relative minimum value. What new ideas about mathematics did you learn? which graph represents the solution set for 1/2x Rewrite sentence using possessive noun to make them less wordy. The dog of my brother is white and brown. find the next numbers 5, 1, 7, 0, 9, -1, 11...