Simplify to create an equivalent expression.

5
(
1

5
k
)

4
(
2
k
+
5
)

Answers

Answer 1

Answer:

Step-by-step explanation:

1) Distribute the numbers outside of the parenthesis to the numbers inside the parenthesis. This means multiple the outside number to all the numbers that are inside the parenthesis:
-5+25k-8k-20

2) Combine the like terms. The number with k get combined together since they both have a k. The numbers without a k get combined together. When you combine, you ADD the numbers together.

-13k+5

That should be right!


Related Questions

HELP PLEASE In this polygon, all angles are right angles. What is the area of this polygon? Enter your answer in the box. ft² Polygon in the shape of a letter L, which could be formed by a horizontal rectangle attached along the bottom part of a vertical rectangle. The left side '
of the figure is 18 ft, the bottom side of the figure is 21 ft, the right side of the figure is 8 ft, and the top part of the horizontal rectangle to the right of the vertical rectangle is 12 ft. HURRY I HAVE 5 MINUTES!!!!!!!!!!!!!!!!!!!!!!!!!!

HELP PLEASE In this polygon, all angles are right angles. What is the area of this polygon? Enter your

Answers

Answer:

258 ft²

Step-by-step explanation:

This shape is represented as a rectangle with dimensions of 18ft by 21 ft and a portion of it that has been cut out.

Let's find the area of the original rectangle:

18ft x 21ft378 ft²

Now let's find the area of the part cut out:

12 ft x (18ft - 8ft)12 ft x 10ft120 ft²

Subtract the part cut out from the original rectangle:

378 ft² - 120ft²258 ft²

-Chetan K

Please help!! (Solve for x)

Please help!! (Solve for x)

Answers

The value of x using the theorem of intersecting secants is 10

How to calculate the value of x

From the question, we have the following parameters that can be used in our computation:

intersecting secants

Using the intersecting secants equation, we have

8 * (8 + x) = 6 * (6 + 18)

Evaluate the like terms

So, we have

8 * (8 + x) = 6 * 24

Divide both sides by 8

8 + x = 6 * 3

So, we have

8 + x = 18

Subtract 8 from both sides

x = 10

Hence, the value of x is 10

Read more about intersecting secants at

https://brainly.com/question/26340897

#SPJ1

Find the solution set of the system of linear equations represented by the augmented matrix. (If there is no solution, enter NO SOLUTION. If the system has an infinite number of solutions, set x3 = t and solve for x1 and x2 in terms of t.)
leftbracket3.gif 2 1 −1 3 rightbracket3.gif
1 −1 1 0
0 1 2 1
(x1, x2, x3) =

Answers

The solution set of the system of linear equations is (x1, x2, x3) = (3/2, 3/2, −1/4).

We can solve this system of linear equations using Gaussian elimination method.

Step 1: Add the first row to the second row:

leftbracket3.gif 2 1 −1 3 rightbracket3.gif

1 −1 1 0 2

0 1 2 1

Step 2: Subtract 2 times the second row from the third row:

leftbracket3.gif 2 1 −1 3 rightbracket3.gif

1 −1 1 0 2

0 0 4 −1

Step 3: Divide the third row by 4:

leftbracket3.gif 2 1 −1 3 rightbracket3.gif

1 −1 1 0 2

0 0 1 −1/4

Step 4: Subtract the third row from the first row:

leftbracket3.gif 2 1 −1 3 rightbracket3.gif

1 −1 0 −1/4 7/4

0 0 1 −1/4

Step 5: Add 4 times the second row to the first row:

leftbracket3.gif 2 0 −5/4 3 rightbracket3.gif

1 0 1 −1/4 −1/4

0 0 1 −1/4

This echelon form gives us the solution:

x3 = −1/4

x2 = 7/4 + x3 = 7/4 − 1/4 = 3/2

x1 = 3 − x2 = 3 − 3/2 = 3/2

So, the solution set of the system of linear equations is (x1, x2, x3) = (3/2, 3/2, −1/4).

You can learn more about linear equations at

https://brainly.com/question/2226590

#SPJ4

matt had 4/6 bag of peanuts. He ate a quarter of what was in the bag. How much of a full bag of peanuts did Matt eat?

Answers

Matt ate 1/6 of the bag of peanut


How to calculate the amount of peanut that matt ate?

Matt had 4/6 bag of peanut

He ate a quarter of what was in the bag

The amount of peanut he ate can be calculated as follows

= 4/6 × 1/4

= 4/24

= 1/6

Hence Matt ate 1/6 of the bag of peanut

Read more on quarter here
https://brainly.com/question/29245182


#SPJ1

Determine whether the triangle can have sides of the given lengths. 3 cm. 10 cm. 8 cm​

Answers

Answer:

Yes

The inequality of the triangle:

\(a < b+c,\ b< a+c,\ c<a+b\)

Step-by-step explanation:

\(10<3+8\)

\(3<10+8\)

\(8<10+3\)

The inequality works, therefore these sides can make a triangle

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

Answers

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

Figure ABCD is a rhombus. Find the value of x.

58°

x = [ ? ]°

Figure ABCD is a rhombus. Find the value of x. 58x = [ ? ]

Answers

Answer:

Diagonals of a rhombus bisect each other perpendicularly(at 90°) :therefore

we have a triangle where in we have

\( x + 58 + 90 = 180 \\ \\ x = 180 - 58 - 90 \\ x = 32\)

Figure ABCD is a rhombus. Find the value of x. 58x = [ ? ]

As per the given rhombus ABCD in the figure, the value of x will be equal to 32°.

What is a Polygon?

A polygon is described in geometry as a compact, two-dimensional shape having three or more straight lines. Poly, which means "many," and gon, which means "angle," make up the Greek word "Polygon." Polygons of several kinds can be seen all around us.

As per the given information in the question,

As we know that the diagonal of a rhombus bisects each other at 90°.

We also know that the sum of all sides of the triangle is 180°.

So, the equation will be,

x + 58° + 90° = 180°

x = 180 - 90 - 58

x = 32°

To know more about Polygon:

https://brainly.com/question/24464711

#SPJ2

HELP PLEASE I DONT UNDERSTAND!!!!!!!! McLaughlin High School is selling 1,000 tickets for $10 each to raise funds for its arts programs. One ticket will be drawn, and the person who bought it will win a $1,000 prize. What do think of such a system for raising funds? Would you buy a ticket? Why or why not?

In general, what is your personal view of games of chance, such as a raffle? Do you participate in such games? Do you have particular feelings about people who do or about those who offer them?

Now that you have explored probability and its related concepts in this unit, do you have a different perspective on games of chance than you used to? Is fairness or lack of fairness an issue for you regarding such games? Explain

Answers

Answer: i wouldnt

Step-by-step explanation: while its a good way to get funds since you'd get 10x the amount the people came. But if you were the person buying the ticket you'd have 1 in a thousand chance. Unless less people came but still -

so no.

ahhhhhh helpp plsssssssssssssssssssssssssssssssssssssss
Mariah invested her money. The balance in the account for any given year is modeled by the function f(t)=400(1.15)t , where t represents the number of years after she opened the account. Colton invested his money and his balance is modeled by the function represented in the table:

Year 0 1 2 3 4
Balance ($) 500 550 600 650 700
Compare the two functions. Which statements are correct?

Select each correct answer.

Question 1 options:

Colton's account will always have a higher balance than Mariah's for any given year.


Mariah's balance will always be higher than Colton's for any given year.


In the fifth year, Mariah's balance will be higher than Colton's.


Mariah's beginning balance was $400 and Colton's beginning balance was $500.


In the fifth year, Colton's balance will be higher than Mariah's.

Answers

The correct options include:

b. In the fifth year Mariah's balance will be higher than Colton's

c. Mariahs beginning balance was 400 and coltons beginning balance was 500.

What are functions?

Functions are the fundamental part of the calculus in mathematics. The functions are the special types of relations. A function in math is visualized as a rule, which gives a unique output for every input x.

Here, from the table

(0, 500), (1, 550), (2, 600), (3, 650) and (4, 700)

The equations for the given points is y=500+50t

Put t=0, 1, 2, 3, 4 in f(t)=400(1.15)t

When t=0, f(0)=$0

When t=1,

f(1)=400×1.15×1

= $460

When t=2,

f(2)=400×1.15×2

= $920

When t=3,

f(3)=400×1.15×3

= $1380

When t=4,

f(4)=400×1.15×4

= $1840

Fifth year:

The balance in Mariah account is

f(t)=400(1.15)t

⇒ f(5)=400×1.15×5

= $2300

The balance in Colton account is

y=500+50t

⇒ y=500+50(5)

= $750

Learn more about functions on:

https://brainly.com/question/25638609

#SPJ1

a coin is tossed 3 times find the probabbity that it land on head exactly once is?

Answers

Answer:

1/8

Step-by-step explanation:

The probability of a coin landing heads if it's tossed once is 1/2, we just multiply 1/2 3 times to find the probability:

\((\frac{1}{2})(\frac{1}{2})(\frac{1}{2})=\frac{1}{8}\)

The graph shows the calling charges of two cell phone companies. At how many minutes do the two companies charge the same amount?у2018cell phonecompany A161412Charges (dollars)1018cell phonecompany B6X708010 20 3040 50 60Time (minutes)A.0В.15C20D. 40

Answers

The two phone companies charge the same amount in the line intersection. That is, when x=20

Answer: 20 minutes

Darius cuts out a square hole that is 6 inches long each side what is the area of the frame?

Answers

The area of the square hole having a side length of 6 inches is 36 inches².

What are the dimensions of a square?

The area of a square is a product of it's any two sides or a product of diagonals divided by two. If side has a length a then diagonal is a√2.

The perimeter of a square is the sum of the lengths of all the sides.

Given, Darius cuts out a square hole that is 6 inches long each side.

We know the area of a square is (side×side).

Therefore, The area of the square hole having a side length of 6 inches is = (6×6) = 36 inch²

learn more about squares here :

https://brainly.com/question/28776767

#SPJ2

What is the meaning of "\( \varphi (x,y)\) be \( y\wedge \phi (x)\) "?

What is the meaning of "[tex] \varphi (x,y)[/tex] be [tex] y\wedge \phi (x)[/tex] "?

Answers

The given passage provides a proof that the Separation Axioms follow from the Replacement Schema.

The proof involves introducing a set F and showing that {a: e X : O(x)} is equal to F (X) for every X. Therefore, the conclusion is that the Separation Axioms can be derived from the Replacement Schema.In the given passage, the author presents a proof that demonstrates a relationship between the Separation Axioms and the Replacement Schema.

The proof involves the introduction of a set F and establishes that the set {a: e X : O(x)} is equivalent to F (X) for any given set X. This implies that the conditions of the Separation Axioms can be satisfied by applying the Replacement Schema. Essentially, the author is showing that the Replacement Schema can be used to derive or prove the Separation Axioms. By providing this proof, the passage establishes a connection between these two concepts in set theory.

Learn more about axioms here:

https://brainly.com/question/2857184

#SPJ8

The number of people contacted at each level of a phone tree can be
represented by f(x) = 3*, where x represents the level.
What is x when f(x) = 27?
A. x = 24; At level 24, 27 people will be contacted.
B. x= 2; At level 2, 27 people will be contacted.
C. x= 9; At level 9, 27 people will be contacted.
OD. x= 3; At level 3, 27 people will be contacted.

Answers

The correct answer is C. x= 9; At level 9, 27 people will be contacted.

We are given that f(x) = 3*x, where x represents the level.

To find x when f(x) = 27, we need to solve the equation 3*x = 27 for x:

3*x = 27

Dividing both sides by 3, we get:

x = 9

Therefore, at level 9, 27 people will be contacted, and the correct answer is C.

A box of cereal costs $4.99 for 64 oz. Find the unit cost, round to the nearest hundredth.

Answers

\(\begin{gathered} \text{ \$4.99 for 64 oz} \\ Unit\text{ cost=}\frac{\text{ \$4.99}}{\text{64 oz}}\approx\text{ \$}0.08\text{ per oz} \\ \text{The unit cost is \$}0.08\text{ per oz} \end{gathered}\)

The area of a square is 36 sq.cm, then its perimeter is a) 24 cm b) 6 cm c) 144 cm d) 36 cm​

Answers

Answer:

Step-by-step explanation:

3.6*

It is very easy to find the perimeter of a square when its area is given in the question. For that, you only ned to know one fomula. That formula is: Area = side^2

For this particular question, the given value for the area of the square is 36 sq.cm. So, we can solve for the side(s) by substituting the given value in the above mentioned formula.

We get

36 = s^2

Now, we need to get the square root of both sides, which gives us

s = √36 s = 6 cm

Since all the sides of a square are equal in length, the side length is 6 cm. Now to determine the perimeter, we must multiply the side length by 4 (because there are 4 equal sides in a square). That gives us Perimeter = 4 x side length Perimeter = 4 x 6 cm.

Therefore, the perimeter of the square is 24 cm.

Check this out-

https://brainly.com/question/29192128?referrer=searchResults

What is the equation of the following line written in general form? (The y-intercept is -1.)
A 2x + y - 1 = 0
B -2x - y - 1 = 0
C 2x - y - 1 = 0

What is the equation of the following line written in general form? (The y-intercept is -1.)A 2x + y

Answers

Answer:

C

Step-by-step explanation:

the y-intercept is -1

the slope is 2/1

y=2x+-1

2x-y-1=0

-y=-2x+1

divide everything by -1

y=2x+-1

Answer the questions you want to but I do need help on all of these.

Q1.) -22 + 14/ 2 (-10)
Answers:
-2/5
9/5
2/5
-1

Q2.) -125/5
Answers:
120
-120
25
-25

Q3.) -2 4/5 - 6 2/15
Answers:
-8 14/15
8 14/15
-9 1/3
9 1/3

Q4.) 3 3/5 X 2/9
Answers:
3 4/5
2/15
3 2/15
4/5

Q5.) Find X -------> -3x - 21 = -42
Answers:
7
-7
21
-21
WILL GIVE BRAINLIEST (50 POINTS)

Answers

Answer:

1)   2/5

2)  -25

3)  -8 14/15

4)  4/5

5)  7

Step-by-step explanation:

\(\begin{aligned}\textsf{1)} \quad \dfrac{-22+14}{2(-10)}& =\dfrac{-8}{-20}\\\\& = \dfrac{8}{20}\\\\& = \dfrac{8 \div 4}{20 \div 4}\\\\& = \dfrac{2}{5}\end{aligned}\)

\(\begin{aligned}\textsf{2)} \quad -\dfrac{125}{5} &=-\dfrac{125 \div 5}{5 \div 5}\\\\& = -\dfrac{25}{1}\\\\& = -25\end{aligned}\)

\(\begin{aligned}\textsf{3)} \quad -2 \frac{4}{5}-6 \frac{2}{15} & = -\dfrac{2 \times 5+4}{5}-\dfrac{6 \times 15+2}{15}\\\\& = -\dfrac{14}{5}-\dfrac{92}{15}\\\\& = -\dfrac{14 \times 3}{5 \times 3}-\dfrac{92}{15}\\\\& = -\dfrac{42}{15}-\dfrac{92}{15}\\\\& = \dfrac{-42-92}{15}\\\\& = \dfrac{-134}{15}\\\\& = -8 \dfrac{14}{15}\end{aligned}\)

\(\begin{aligned}\textsf{4)} \quad 3 \frac{3}{5} \times \dfrac{2}{9} & = \dfrac{3 \times 5+3}{5} \times \dfrac{2}{9}\\\\& = \dfrac{18}{5}\times \dfrac{2}{9}\\\\& = \dfrac{18 \times 2}{5 \times 9}\\\\& = \dfrac{9 \times 2 \times 2}{5 \times 9}\\\\& = \dfrac{2 \times 2}{5}\\\\& = \dfrac{4}{5}\end{aligned}\)

\(\begin{aligned}\textsf{5)} \quad-3x-21 & =-42\\-3x-21+21 & = -42+21\\-3x & = -21\\\dfrac{-3x}{-3} & = \dfrac{-21}{-3}\\x & = 7\end{aligned}\)

A 12 pack of juice costs $4.20. An 18 pack costs $5.40. Which is the better buy?

Answers

Answer:

the 12 pack is better because u get to pay less money

Step-by-step explanation:

12 packs — $4.20
1 pack — $4.20/12= $0.35

18 packs — $5.40
1 pack — $5.40/18 = $0.30

the 18 pack is better buy as the cost per piece is better than the 12 pack

A 9th grade teacher at a local high school wants to know which subject the 9th grade students in the high school like best which group of people should make up a sample that will best answer her question a, other 9th grade teachers in her school
B, parents of 9th graders in her school
C, 9th graders in her school
D,9th graders in her homeroom

Answers

The group of people who should make up a sample that will best answer her question is the 9th graders in her school. The correct option is C.

What are subjects?

Subjects are the different sets of information which is studied.

9th graders in her school will be perfect because the question is specifically asking about the opinions of 9th-grade students in the high school, so it makes sense to sample this group directly.

The other options may provide some insights, but they may not be as accurate or representative of the opinions of the 9th-grade students in the school.

Thus, the correct option is C, 9th graders in her school.

Learn more about subjects, here:

https://brainly.com/question/23548366

#SPJ1

Alex wants to arrange chairs in such a way that the number of chairs in a row is equal to the number of columns. He has ordered 5100 tables.
a)How many more tables needed to arrange in such a way that he planned? Justify your answer
2)How many chairs can he remove to arrange in a way that he wants? Justify your answer.

Answers

Answer:

84

59

Step-by-step explanation:

In other to have the same number of chayes in both rows and columns ;

If the Number of chairs per row = x ; then number of chairs per column = x

Then the total number of chairs needed = x * x = x²

Hence, if there are 5100 chairs ;

Number of chairs needed more ;

Take the square root of 5100 ;the round to the next whole number :

B.) For number of chairs to be removed ;

Take the square root of 5100 and round down to the whole number.

Hence,

A.) = √5100 = 71.414 = 72

72² - 5100 = 84

B.) 5100 = 71.414 = 71

5100 - 71² =

] 1) Convert the number 2,371,875,908 to scientific notation.

Answers

Answer:

2.3718759×10^9

Step-by-step explanation:

Its the answer

Answer:

2.371875908 × 109 is ur answer.

Step-by-step explanation:

hope this helps!

~mina

SOMEONE PLEASE HELP ME WITH MY HOMEWORK ILL DO ANYTHING FOR HELP BUT JUST PLEASE HELP ME

SOMEONE PLEASE HELP ME WITH MY HOMEWORK ILL DO ANYTHING FOR HELP BUT JUST PLEASE HELP ME

Answers

Answer:

6

Step-by-step explanation

divide 48/6=6

divide 90/15=6

divide 102/17=6

Lines m and n are parallel lines that are intersected by transversal t. If m<1 = 47 degrees, what is the measure, in degrees, of <2?

Lines m and n are parallel lines that are intersected by transversal t. If m&lt;1 = 47 degrees, what

Answers

Answer:

it would be 47. its the same length as <1=47

A rocket is fired into the air modeling the equation h = -16t2 + 512t + 50, where "t" is the time in seconds and "h" is the
3
height in feet

Answers

3 ft is the 1521 that’s the answer

A map in which 1 centimeter represents 100 meters shows a lake. The image of the lake on the map is covered by a 1/2-centimeter thick layer of modeling , and the clay is then re-formed into a 1/2-centimeter rectangle that measures 4.5 centimeters by 5.6 centimeters. Determine the area of the lake in square meters and show or explain how you got your answer.

Answers

The area of the lake is 252000 square meters.

What do you mean by dimensions?

In geometry, the dimensions of a rectangle refer to its length and width. The length of a rectangle is its longer side, while the width is its shorter side. The length and width of a rectangle can be thought of as the horizontal and vertical sides of the rectangle, respectively.

A rectangle can be specified by its dimensions in the form (length, width). For example, a rectangle with length equal to 5 units and width equal to 3 units can be written as (5, 3).

It's important to note that the length and width of a rectangle can be interchanged without changing the shape of the rectangle. In other words, a rectangle with dimensions (5, 3) is the same shape as a rectangle with dimensions (3, 5).

To determine the area of the lake, we first need to determine the size of the clay rectangle in terms of meters. We can do this by multiplying the dimensions of the rectangle on the map by 100 (since 1 centimeter on the map represents 100 meters in real life).

So, the dimensions of the clay rectangle in meters would be:

4.5 cm * 100 = 450 meters (width)

5.6 cm * 100 = 560 meters (length)

Next, we can find the area of the rectangle by multiplying its length by its width:

450 meters * 560 meters = 252000 square meters

Therefore, the area of the lake is 252000 square meters.

To know more about area visit:

https://brainly.com/question/8663941

#SPJ1

A marketing company wanted to test what makes people purchase more cereal and they varied box size and flashy/simple graphics. Which of the following would be the main effects tested in this study? a. the results comparing each box size and comparing flashy vs Simple graphics b. behavior of purchasing cereal c. the results comparing each box size only d. the results comparing flashy vs. simple graphics only

Answers

Option A is correct that is the results comparing each box size and comparing flashy vs simple graphics.

Given this, a marketing firm tested several package variations, including size, complexity, and simplicity, to determine which would encourage customers to buy more cereal.

Which of the following would be the key conclusions of the study?

We are aware of this since we are comparing various box and graphic sizes.

When contrasting the sizes of each box and the flashy vs. simple images, the influence of the research can be noticed.

The comparison of the sizes of each box and the effectiveness of flashy vs. straightforward images shows that Option A is the best choice.

To learn more about graphics visit: https://brainly.com/question/29082830

#SPJ4

sharmila recived 81 texts in 9 minutes

Answers

Answer:

Step-by-step explanation:

81 texts in 9 hours

So you do 81 divided by 9

Which givrs you 9 text an hour

1) (b + a) = 4; use a = 1 and b = 3

2) c(b + b); use b = 1 and c = 5

3) 4+ pm; use m = 4 and p =3

4) 5+ pm; use m = 4 and p = 2

5) m(p + 2); use m = 5 and p = 2

6) h+j²; use h = 1 and j = 4

7) y-(x - 5); use x = 5 and y = 6

8) 4xy; use x = 5 and y = 2

9) n(p + 3); use n = 2 and p = 2

10) y +x+x; use x = 3 and y=5

11) 6+ a-b; use a = 4 and b = 4

Answers

The equations will be solved by putting the values of the variables in the bracket.

How to calculate the values?

1. (b + a) = 4; use a = 1 and b = 3

( 1 + 3) = 4

2) c(b + b); use b = 1 and c = 5

5(1 + 1)

= 5 × 2 = 10

3) 4+ pm; use m = 4 and p =3

= 4 + (4 × 3)

= 4 + 12

= 16

4) 5+ pm; use m = 4 and p = 2

= 5 + (2 × 4)

= 5 + 8

= 13

5) m(p + 2); use m = 5 and p = 2

= 5(2 + 2)

= 5 × 4

= 20

6) h+j²; use h = 1 and j = 4

= 1 + 4²

= 17

7) y-(x - 5); use x = 5 and y = 6

= 6 - (5 - 5)

= 6 - 0

= 6

8) 4xy; use x = 5 and y = 2

= 4 × 5 × 2

= 40

9) n(p + 3); use n = 2 and p = 2

= 2(2 + 3)

= 10

10) y +x+x; use x = 3 and y=5

= 5 + 3 + 3

= 11

11) 6+ a-b; use a = 4 and b = 4

= 6 + 4 - 4

= 6

Learn more about equations on:

brainly.com/question/297832

#SPJ1

Which of the following sets of ordered pairs does not satisfy a linear function?
(2, 5), (3, 7), (4, 9), (5, 11), (6, 13)
(2, 6), (3, 9), (4, 12), (5, 15), (6, 18)
(2, 5), (4, 9), (6, 13), (7, 15), (9, 17)
(2, 6), (4, 8), (6, 10), (8, 12), (10, 14)

Answers

Answer:

(2, 6), (4, 8), (6, 10), (8, 12), (10, 14)

Other Questions
Group Project - Health and Biology B The human field of view is slightly more than 180 horizontally, which means we are capable of noticing things positioned very slightly behind us and far to our left, in front of us, and very slightly behind us and far to our right. However, the left-most and right-most ends of this vision are only covered by one eye. Our binocular field of view, the portion that both eyes can see, is only 114 horizontally. Your lab is putting a mural on the side of the building. The mural should be as big as possible while still being fully viewable by both eyes in a single glance from 20ft away. How wide should you make the mural? Mr. Mahoney suspects that Amy may qualify for special educational services. If she does, in which of the following categories of special needs is she least likely to fall? Hearing loss Autism spectrum disorders Speech and communication disorders Attention-deficit hyperactivity disorder On January 1, 2021, Byner Company purchased a used tractor. Byner paid $5,000 down and signed a noninterest-bearing note requiring $25,000 to be paid on December 31, 2023. The fair value of the tractor is not determinable. An interest rate of 10% properly reflects the time value of money for this type of loan agreement. The company's fiscal year is December 31. Required: 1. Prepare the journal entry to record the acquisition of the tractor. Round computations to the nearest dollar. 2. How much interest expenses will the company include in its 2021 and 2022, income statement for this note? 3. What is the amount of the liability the company will report in its 2021 and 2022 balance sheets for this note? Mentally calculate the following products. Use the rule for decimal multiplication to write an equation in which the decimal point is written in the correct location. a. (0.04)(-0.1) b. (0.03)(-0.02) c. (0.7)(0.4) QUESTION #1 - IN YOUR OPINION, what are the three (3) most important HR laws? List your 3 most important laws, explain what the law is, why you believe it is important, and how businesses can ensure t hey never violate it. What is the pressure of a car tire that had an initial pressure of 33.7 kPa but washeated from 98.4C to 110.C? Which appeal does Martin Luther King Jr. use in the following line from his "I Have a Dream" speech?"I say to you today, my friends, so even though we face the difficulties of today and tomorrow, I still have a dream. It is a dream deeply rooted in the American dream. I have a dream that one day this nation will rise up and live out the true meaning of its creed: 'We hold these truths to be self-evident, that all men are created equal.'" Your portfolio has a beta of 1.28. The portfolio consists of 25 percent U.S. Treasury bills, 31 percent Stock A, and 44 percent Stock B. Stock A has a risk-level equivalent to that of the overall market. What is the beta of Stock B Suppose that f(x) = 5x^3 + 4x(A) Find all critical values of f . if there are no critical values enter -1000 . if there are more than one , enter them separated by commas. Critical value(s) = ______(B) Use interval notation to indicate where f(x) is increasing .Note : When using interval notation in WeBWork , you use I for [infinity], - I for [infinity], and U for the union symbol. If there are no values that satiafy the required condition, then enter "{}" without the quotation marks.Increasing : ______(C) Find the x-coordinates of all local maxima of f. If there are no local maxima , enter -1000 . If there are more than one , enter them separated by commas.Local maxima at x = ________(D) Find the x-coordinates of all local minima of f . If there are no local minima , enter -1000 . if there are more than one , enter them separated by commas.Local minima at x = _________ How do peoples perspectives play a role in how they may answer the teachers question? Relate two factors that can limit the accuracy and precision of measurements. What are the three gas laws in terms of thermodynamics? In three to five sentences, explain your answer using inferences. using the fifo method and the list of inventory above, which of the following is the cost of goods sold during january? $187.50 $300.00 $237.50 $212.50 let x1, x2, and x3 be independent normally distributed random variables with means, 4, 8, and 12, respectively, and standard deviations of 2, 3, and 4, respectively. a. what is the distribution of x1 x2? b. find the probability that x1 x2 is greater than 16. c. what is the distribution of 3x1 2x2 x3? have data on the weights in grams of 5 baby pythons. Th man weight is 3l.B and dre standard deviation of the r,veights is2.79. The correct units for the standard deviation are which is grammatically correct 1/3 of the inventory was ruined in the fire.One-third of the inventory was ruined in the fire.Both A and B are correct. When researchers conduct an experiment comparing two different treatment conditions, they are likely to be more concerned with ________ validity than ________ validity. Can someone help me pls Find the third side of the triangle. (Round your answer to one decimal place.) 247, c = 204, B = 52.4 derajat = Give a 150-200 word executive summary about Chteau Margaux: Launching the Third Wine (Abridged)