HELPP ONBB- I just realized this is due today!!

HELPP ONBB- I Just Realized This Is Due Today!!
HELPP ONBB- I Just Realized This Is Due Today!!

Answers

Answer 1

The rate of change (m) = 9

The starting number (b) = 100

The equation is: y = 9x + 100

(0, 100) is the ordered pair for the starting number.

See the image for the graph of y = 9x + 100.

How to Create and Graph the Equation of a Line?

To create the equation of a line, we need to determine the following:

Y-intercept/starting value = b

Slope of the line/rate of change = m

The ordered pair of the y-intercept or starting value is represented as (0, b), where b is the value of y on the y-axis where the line intercepts the y-axis and x = 0 at this point.

These values can be substituted into y = mx + b, which represents the equation of the line in slope-intercept form.

From the information given, we have:

Y-intercept/starting value (b) = 100

Slope of the line/rate of change (m) = 9

To write the equation of the line, substitute m = 9 and b = 100 into y = mx + b:

y = 9x + 100

The ordered pair for the starting number would be: (0, 100).

The image below shows the graph of y = 9x + 100.

Learn more about the equation of a line on:

https://brainly.com/question/13763238

#SPJ1

HELPP ONBB- I Just Realized This Is Due Today!!

Related Questions

help i don’t get it
answers pls

Answers

Answer: x=13°

Step-by-step explanation: We know total amount of degrees in a triangle is 180°. We also know two of the angles' degrees: 39° and 90°. Now, with this info, we set up an equation: (3x+12)+39+90=180. We add 39 and 90 to get 129; then we subtract 129 on both sides of the equation. Our equation should now look like this: 3x+12=51. Subtract 12 on both sides to get: 3x=39. Lastly, divide 3 on both sides to find the value of x.

the fibonacci sequence begins with 0 and then 1 follows. all subsequent values are the sum of the previous two, for example: 0, 1, 1, 2, 3, 5, 8, 13. c

Answers

The nth term in the Fibonacci series is printed at the conclusion of the program.

What is a Fibonacci sequence?The Fibonacci numbers, also known as Fₙ, are a set of numbers in mathematics where each number is the sum of the two numbers before it. Although some authors omit the initial terms and begin the sequence from 1 and 1 or from 1 and 2, the sequence typically starts from 0 and 1.

So, until a condition is satisfied, recursions involve calling a function from within a function.

The necessary function, which uses comments to describe each line, is as follows:

//This defines the function

public static int fibonacci(int n) {

//The function returns -1, if n is negative

if(n<0){

return -1;}

//The function returns the value of n, if n is 0 or 1

if(n==0||n==1){

return n;}

//If otherwise

else{

//The function returns the nth term of the Fibonacci series

return fibonacci(n-1)+fibonacci(n-2);

}

}

Therefore, the nth term in the Fibonacci series is printed at the conclusion of the program.

Know more about the Fibonacci sequence here:

https://brainly.com/question/16934596

#SPJ9

The correct question is given below:

The Fibonacci sequence begins with 0 and then 1 follows. All subsequent values are the sum of the previous two, for example: 0, 1, 1, 2, 3, 5, 8, 13. Complete the fibonacci() method, which takes in an index, n, and returns the nth value in the sequence. Any negative index values should return -1.

Ex: If the input is: 7

the out put is :fibonacci(7) is 13

Note: Use recursion and DO NOT use any loops. // is this mean i don't have to use loops? for (int i = 1; i<= n; ++i)

import java.util.Scanner;

public class LabProgram {

public static int fibonacci(int n) {

/* Type your code here. */

public static void main(String[] args) {

Scanner scnr = new Scanner(System.in);

int startNum;

System.out.println("Enter your number: ");

startNum = scnr.nextInt();

System.out.println("fibonnaci(" + startNum + ") is " + fibonacci(startNum));

}

}

Find the value of the exterior or interior angle!

Answers

The values of interior angle is 63°,  46°,  71°

What are Interior Angles?

Angles inside a polygon are referred to as interior angles. A triangle, for instance, has three interior angles. Interior angles are sometimes defined as "angles enclosed in the interior region of two parallel lines when they are intersected by a transversal."

Put all the values equal to 180°,

=> (2x+5) + (x+17) + (3x-16) = 180°

Now, solve this equation and find x,

=> 6x + 22 - 16 = 180

=> 6x = 180 - 6

=> x = 174 / 6

=> x = 29°

Put x = 29° in the 2x + 5, x + 17, 3x - 16

2x + 15                |   x + 17          |   3x - 16      

2 * 29 + 15          |  29 + 17        |   3 * 29 - 16

63°                      |   46°             |   71°

Therefore, the  values of interior angle is 63°,  46°,  71°

To read more about Angles.

https://brainly.com/question/25770607

#SPJ13

The probability of a telesales represented making a sale on a customer call is 0.15. find the probability that more than 3 sales are made in 20 calls.

Answers

Using Binomial probability distribution,

X = 20, 0.15

P (X ≤ 3) =[tex]20 C_{0} (0.15)^{0} (1-0.15)^{20} + 20C_{1} (0.15)^{1} (1-0.15)^{19} + 20C_{2} (0.15)^{2} (1-0.15)^{18} + 20C_{3} (0.15)^{3} (1-0.15)^{17}[/tex]

P(X ≤ 3) = 0.648

P (X ≥ 3) = 1 - P(X ≤ 3) = 1 - 0.648

P ( X ≥ 3) = 0.352

Therefore, thee required probability is 0.352.

View More, https://brainly.com/question/12474772

#SPJ4

If K=tm^(p/q) create a formula for q

Answers

The formula for q will be q = p*logm/(logK - logt)

Logarithm

A logarithm is defined as the power to which a number must be raised to get some other values. It is the most convenient way to express large numbers. A logarithm has various important properties that prove multiplication and division of logarithms can also be written in the form of logarithm of addition and subtraction.

Given equation:

[tex]K=tm^{(\frac{p}{q} )}[/tex]

We have to find a formula for q.

Raising the whole equation to the power of q, we get

[tex]K^q=t^qm^{p}[/tex]

We can rewrite it as,

[tex]\frac{K^q}{t^q}=m^p[/tex]

[tex](\frac{K}{t})^q=m^p[/tex]

Operating with logarithm on both sides, we get,

q*log(K/t) = p*logm

q = p*logm/log(K/t) = p*logm/(logK - logt)

To learn more about logarithm, here:-

https://brainly.com/question/28346542

#SPJ1

PLEASE HELP
find two functions define implicity by this equation. x + y^2 = 25
PHOTO ATTACHED

Answers

Answer:

y = √25 - x

y = -√25 - x

Step-by-step explanation:

x + y² = 25

-x                -x

----------------------

y² = -x + 25

√y² = √-x + 25

y = √25 - x

y = -√25 - x

I hope this helps!

out of 150 students appeared in an examination 60% of the students passed in math 50% in Science and 20% in both subjects how many students where failed in both subjects ?by using Venn diagram find the number of student Wawa passed in maths only .​

Answers

Answer:

5000 students

Step-by-step explanation:

Let total number of students appeared in the exams is x.

20% of x have failed in both maths and science.

Here,in maths 60% of students passed.

%ag of students failed in maths= 40%

%ag of students failed in math — % of students failed in both maths and science = students passed in science but failed in maths i.e. 40–20 = 20%.

Likewise as 70% of students passed science

So 30% failed in science.

And Students failed in science only but passed in maths= %ag of students failed in science- % of students failed in both maths and science.

i.e. 30–20= 10%.

Given 2500 number of students passed in both maths and science = 100–(students failed in both maths and science+ students failed only in maths and passed in science+ students failed only in science but passed in maths)%

= 100–(20+20+10)= 50% of students passed both.

50% of x = 2500

50x/100= 2500

=> x= 5000.

So total number of students appeared in exam is 5000 in number

What is the solution to |x – 2| + 3 > 17?

x < –12 or x > 16
x < –14 or x > 7
–12 < x < 16
–14 < x < 7

Answers

Answer:

Option 1

Step-by-step explanation:

[tex]|x-2|<14 \\ \\ x-2<-14, x-2>14 \\ \\ x<-12, x>16[/tex]

Adrian has $620 to spend at a bicycle store for some new gear and biking outfits. Assume all prices listed include tax.
He buys a new bicycle for $322.09.
He buys 3 bicycle reflectors for $9.54 each and a pair of bike gloves for $22.01.
He plans to spend some or all of the money he has left to buy new biking outfits for $61.82 each.

Use the drop-down menu below to write an inequality representing oo, the number of outfits he can buy while staying within his budget.

Answers

Answer:

4 outfits

Step-by-step explanation:

So to find out how much he has left after all his purchases to buy new biking outfits we can add:

9.54 x 3 = 28.62

22.01 + 28.62 + 322.09 = 372.72

Now we subtract his budget by how much he has already spent:

620 - 372.72 = 247.28

He has $247.28 left for outfits so we can divide 247.28 by $61.82 (the amount per outfit) to find how many he can buy:

247.28 / 61.82 = 4

Adrian can buy 4 outfits.

How to solve this question

Answers

The value of the limit of piece wise function is 2k.

What is termed as the piece wise function?A piecewise function is one whose independent variable is described by a series of intervals. It displays a different function for each interval of real numbers. The domain of a function is defined as a set of valid values for such independent variable (in the this case, x) that can be embedded into the function. The range of the a function is the collection of possible values for y that can be obtained after running the function.

For the given question;

The piece wise function is defined as a;

f(x) = (x² - k²)/(x - k) , x ≠ k

f(x) = 4 - k , x = k

For the value of lim (x → k⁻) f(x);

Use function for  x ≠ k, as the left hand limit of the functions is to be evaluated.

=  lim (x → k⁻) f(x)

Let x = k - h, put in the function.

=  lim (h → 0)  ((k-h)² - k²)/(k - h - k)

= lim (h → 0) h(h - 2k)/-h

=  lim (h → 0) 2k - h

Pu h = 0

= 2k

Thus, the  value of the limit of piece wise function is 2k.

To know more about the piece wise function, here

https://brainly.com/question/27262465

#SPJ13

In the figure below, m<2=43°. Find m<1.

m<1 =

Answers

Answer:

137°

Step-by-step explanation:

Given: ∠2 = 43°

Find: ∠1 = ?

Solution:

∠1 + ∠2 = 180°

∠1 = 180° - ∠2

∠1 = 180° - 43°

∠1 = 137°

A particle moves in a circular orbit x^2+y^2=16. As it passes through the point (2,2sqrt3), its y-coordinate decreases at a rate of 3 units per second. at what rate is x-coordinate changing?

Answers

The rate at which the x-coordinate is changing is 3√3 units per second .

In the question ,

it is given that

the equation of the particle moving in the circular orbit is x²+y²=16

given the y coordinate decreases at 3units per second

So, dy/dt = -3.

to find the rate at which the x-coordinate is changing , we will differentiate the given equation.

Differentiating the equation  x²+y²=16 with respect to t , we get

d/dt(x²+y²) = d/dt(16)

2x(dx/dt) + 2y(dy/dt) = 0

2x(dx/dt) =  -2y(dy/dt)

Dividing both sides by 2 ,

we get ,

x(dx/dt) =  -y(dy/dt)

[tex]\frac{dx}{dt} =\frac{-y(\frac{dy}{dt}) }{x}[/tex]

As the particle is passing through the point (2,2√3) , So, the point will satisfy the equation.

Substituting the value of x=2 , y=2√3 and dy/dt= -3 ,

we get ,

dx/dt = ((-2√3)*(-3))/2

= (6√3)/2

= 3√3

Therefore , the rate at which the x-coordinate is changing is 3√3 units per second .

Learn more about Rate Of Change here

https://brainly.com/question/13800866

#SPJ1

What value of c in the equation 7c-cy=10x will give a line
with slope +5?

Answers

The value of c in the equation 7c - cy = 10x will give a line with slope +5 is -2.

We can rewrite the equation as:-

-cy = 10x - 7c

y = (-10/c) x + 7

Now the equation is in slope-intercept form which is given by:-

y = mx + b

Where,

m represents the slope of the line

b represents the y-intercept of the line

(x,y) represents ordered pair of each point of the line

Comparing both the equations, we get

m = -10/c

b = 7  

We have to get m = +5

Hence, equating both the values of m, we get

5 = -10/c

c = -10/5

c = -2

Hence, the value of c is -2.

To learn more about slope-intercept form, here:-

https://brainly.com/question/9682526

#SPJ1

What is the product of (−7)(14) • (−6)?

Answers

Answer:

Step-by-step explanation:

-588

1.998 x 10^27
Ordinary number

Answers

The representation of the number is 1.998 multiplied by 10^27

How to evaluate the expression?

The expression is given as

1.998 x 10^27

The above mathematical representation is a number in scientific form and is already in its most simplified form

This means that the scientific form cannot be further simplified

However, the scientific number can be rewritten as a mathematical statement

Recall that, we have

1.998 x 10^27

The pronunciation of the above expression is:

1.998 multiplied by 10^27

And it is evaluated by

Moving the decimal point 27 places to the right.

This gives

1998000000000000000000000000

See that the above result does not have a proper representation compared to 1.998 x 10^27

Hence, the representation of the scientific number given as 1.998 x 10^27 is the 1.998 multiplied by 10^27

Read more about scientific number at

https://brainly.com/question/5756316

#SPJ1

Over the last 3 evenings, Maria received a total of 74 phone calls at the call center. The second evening, she received 10 more calls than the first evening. The
third evening, she received 2 times as many calls as the second evening. How many phone calls did she receive each evening?

Number of phone calls the first evening:
Number of phone calls the second evening:
Number of phone calls the third evening:

Answers

The number of phone calls on the first evening is 16. The number of phone calls on the second evening is 26. The number of phone calls on the third evening is 32.

What is an expression?

Expression in maths is defined as the collection of numbers variables and functions by using signs like addition, subtraction, multiplication, and division.

Numbers (constants), variables, operations, functions, brackets, punctuation, and grouping can all be represented by mathematical symbols, which can also be used to indicate the logical syntax's order of operations and other features.

Over the last 3 evenings, Maria received a total of 74 phone calls at the call centre. The second evening, she received 10 more calls than the first evening. On the third evening, she received 2 times as many calls as the second evening.

The number of phone calls on the first evening:- x

The  number of phone calls on the second evening:- x + 10

The number of phone calls on the third evening:- 2x

x + x + 10 + 2x = 74

4x = 74 - 10

4x = 64

x = 16

The number of phone calls on the second evening:-

x + 10

16 + 10 = 26

The number of phone calls on the third evening:-

2x = 2 x 16 = 32

To know more about an expression follow

https://brainly.com/question/29087863

#SPJ1

489.22 divided 10 to the fourth power

Answers

i think the answer is 0.048922
The answer is 0.048922

What is the property of the following equation:
2/5 • 5/2 = 1

Answers

Answer:

Communitave Property

Step-by-step explanation:

Hope this helps!<3°

vince is cutting a rectangular piece of pegboard to use in his garage for organization. the width of the pegboard is 8 inches less than half the length. the perimeterof the pegboard is 224 inches. what is the length of the pegboard?

Answers

The most appropriate choice for linear equation will be given by -

Length of the rectangle is 80 inches

What is linear equation?

At first it is important to know about equation

Equation shows the equality between two algebraic expressions by connecting the two algerbraic expressions by an equal to sign.

A one degree equation is known as linear equation.

Here,

Let the length of the pegboard be l inches

Width of the pegboard = [tex]\frac{1}{2}l - 8[/tex]

Perimeter =

                   [tex]2(l + \frac{1}{2}l - 8 )\\2(\frac{3l}{2} - 8)\\[/tex]

                    [tex](3l - 16)[/tex] inches

But the problem,

[tex]3l - 16 = 224\\3l = 224 +16\\3l = 240\\l = \frac{240}{3}\\[/tex]

[tex]l = 80[/tex] inches

The length of the rectangle is 80 inches.

To learn more about linear equation, refer to the link:

https://brainly.com/question/2030026

#SPJ9

eighteen faculty members in a college math department range in age from 32 to 68. a stemplot follows: 3 2 4 8 9 9 4 0 3 5 6 9 5 3 4 7 8 9 9 6 3 8 the 1.5 × iqr rule would identify an age as a high outlier if it exceeded years. group of answer choices

Answers

The Stem plot is displayed below of eighteen faculty members in a college math department range in age from 32 to 68.

How do you make a stem plot?

On the left hand side of the page, write down the thousands, hundreds or tens (all digits but the last one). These will be your stems. Draw a line to the right of these stems. On the other side of the line, write down the ones (the last digit of a number).

A Stem Plot is a chart for demonstrating the distribution of numeric variables .

It is used to analyze the shape of the distribution.

The data provided is as follows:

S = {32,48,99,40,35,69,53,47,89,96,38}

The Stem plot is displayed as follows:

3 | 2  5   8

4 | 0  7  8

5 | 3

6 | 9

8 | 9

9 | 6  9

learn more about of stem plot here

https://brainly.com/question/17297928

#SPJ4

Because 7 and 17 are both prime numbers all whole numbers that end in 7 are prime is Alice correct u must give a reason

Answers

Answer: Is 17 a prime number? Yes, 17 is a prime number because it only has two factors, 1 and 17.

David is starting a new job in sales. he can choose to earn only a 10% commission on sales each month, or earn a monthly base salary of $1,500 with a 3% commission on sales over $7,500. which pay method would earn him more money if he has an average sales of $16,000 each month?

Answers

Answer:

Method 2, a monthly base salary of $1,500 with a 3% commission on sales over $7,500, will earn more money.

Step-by-step explanation:

given -

method 1 - he can choose to earn only a 10% commission on sales each month,

method 2-earn a monthly base salary of $1,500 with a 3% commission on sales over $7,500.

also, he has an average sales of $16,000 each month.

according to the question;

method 1 earning =>

10% of $16,000 =>(10/100)*$16,000=$16,00.

method 2 earning =>

$1,500+(3/100)*($16000-$7500)=$1755.

in method 2, a monthly base salary of $1,500 with a 3% commission on sales over $7,500. he will earn more.

link-https://brainly.com/question/26762737

#SPJ4

Find the midpoint of the line segment with endpoints P1(11/2,3/8) and P2 (-7/2,5/8)

Answers

To find:

The midpoint of the line segment with the endpoints P1(11/2,3/8) and P2 (-7/2,5/8).

Solution:

The midpoint formula is:

[tex](\frac{x_1+x_2}{2},\frac{y_1+y_2}{2})[/tex]

Put the values:

[tex]\begin{gathered} (\frac{\frac{11}{2}-\frac{7}{2}}{2},\frac{\frac{3}{8}+\frac{5}{8}}{2})=(\frac{\frac{4}{2}}{2},\frac{\frac{8}{8}}{2}) \\ =(\frac{2}{2},\frac{1}{2}) \\ =(1,\frac{1}{2}) \end{gathered}[/tex]

Thus, the midpoint is (1, 1/2).

a couple has narrowed down the choices of a name for their new baby to first names and middle names. how many different​ first- and​ middle-name arrangements are​ possible?

Answers

There are 28 ways in which a couple can choose the name of the baby for its name.

What is defined as the combination?A combination is an algebraic technique for determining the number of possible arrangements in a set of items in which the order of the selection is irrelevant. You can choose the items in just about any order in combinations. Permutations and combinations are often confused.

If we need to choose objects from two groups of x and n objects so that one object from each group is chosen, we can do so by calculating the combinations possible by:  

= ˣC₁  ×  ⁿC₁

Let 'x' be the set of first name = 7

Let 'n' be the set of second name = 4

Putting the values in formula;

= ⁷C₁ × ⁴C₁

= 7 × 4

= 28

Thus, there are 28 ways in which a couple can choose the name of the baby for its name.

To know more about the combination, here

https://brainly.com/question/12725706

#SPJ9

The complete question is-

A couple has narrowed down the choices of a name for their new baby to 7 first names and 4 second names.

How many different first- and second-name arrangements are possible?

1. A.
a_____________
is a fraction where
a and/or b are fractions and b is not equal to 0.
pitel

Answers

Rational fraction is a fraction where a and/or b are fractions and b is not equal to 0.

What is rational fraction?

Any function that can be expressed mathematically as a rational fraction—an algebraic fraction in which both the numerator and the denominator are polynomials—is referred to as a rational function. The polynomials' coefficients don't have to be rational numbers; they can be found in any field K. Any function that can be expressed as a polynomial divided by a polynomial is said to be rational. The domain of a rational function is the set of all numbers except the zeros of the denominator since polynomials are defined everywhere.

Given Data

a_____________ is a fraction where a and/or b are fractions and b is not equal to 0.

A rational fraction is a fraction where a and/or b are fractions and b is not equal to 0.

Example 1. f(x) =[tex]\frac{x}{x-3}[/tex]

The denominator has only one zero, x = 3.

To learn more about rational fractions, visit:

https://brainly.com/question/28383793

#SPJ9

Reflection and Rotation
A. Preserve
B. Do not Preserve

ABC is
A. Equal to the
B. Twice the
C. Not related to the
D. Three times the

And AC is
A. 8,9, and 13
B. 7,9 and 10
C. 2, 14, and 10
D. 8,9 and 10

Answers

Reflection and rotation preserve length , so the perimeter of ΔABC is equal to the perimeter of ΔXYZ. A possible set of values for AB, BC and AC is  7,9 and 10 units.

A rotation is a transformation that occurs when a figure is turned a preset number of degrees around a fixed point (referred to as the center of rotation).

You will currently need geometry software in order to graph a rotation in general. This allows any figure to spin a certain amount of times around any point.A reflection is a kind of transformation that flips the preimage, or original shape, across the line of reflection to produce a new shape (called the image). If the form were to be reversed to graph a reflection, consider what would happen.

The given figure is a triangle ABC such that it is transformed by a rotation of 90 °and reflection about y=-5.

The image thus formed will be congruent to the object and will have same sides and perimeter.

Hence the perimeter will be 26 units and the possible length of AB,BC and AC will be 7,9 and 10 units which is the only possible option as a triangle cannot have sides 2 , 14  and 10.(2+10<14)

To learn more about reflection visit:

https://brainly.com/question/15487308

#SPJ1

fully factorise
[tex]12x^3 + 38x^2 - 14x[/tex]

Answers

Answer:

2x(2x + 7)(3x - 1).

Step-by-step explanation:

12x^3 + 38x^2 - 14x

= x(12x^2 + 38x - 14)

= 2x(6x^2 + 19x - 7)

To factor the expression in the parentheses we need 2 numbers whose product is (6 * -7) = - 42 and whose sum = +19.

These are +21 and - 2.

So, we write:

6x^2 - 2x + 21x - 7

= 2x(3x - 1) + 7(3x - 1)

= (2x + 7)(3x - 1)

So, the answer is 2x(2x + 7)(3x - 1).

Answer:

[tex]2x(3x-1)(2x+7)[/tex]

Step-by-step explanation:

[tex]12x^3+3x^2-14x\\[/tex]

Factor out common factor: (2x)

[tex]=2x(6x^2+19x-7)[/tex]

Factor [tex]6x^2+19x-7[/tex]

[tex]= 2x(3x-1)(2x+7)[/tex]

Hope this helps! :) Sorry for the late reply

The sum of the digits of a certain two-digit number is 11. When you reverse its digits you increase the number by 45. What is the number?​

Answers

Answer:

6 and 9.

Step-by-step explanation:

Remember that the decimal number system is a positional number system. For decimal, that means ones place, tens place, etc.

Let the number be xy [note: x is a digit in tens place and y is another digit in ones place]

Learn to translate the words into formulas:
"When you reverse the digits in a certain two-digit number you increase its value by 45." means
10y + x = (10x + y) + 45 [eq1]

"the sum of its digits is 11" means x + y = 11 [eq2}

Now, solve (let's use substitution):
y = 11-x [from eq2]

Put that into eq1:
10y + x = (10x + y) + 45 [eq1]
10(11-x) + x = 10x + (11-x) + 45
110 - 10x + x = 10x + 11 - x + 45
110 - 9x = 9x + 56
-18x = -54
x = 3

Now, put that into either equation to find the value of y:
3 + y = 11 [eq2]
3 + y = 11
y = 8

The number is 38.

Check:
Is 83 = 38 + 45 ?
83 = 83 ?yes

Is 3 + 8 = 11 ?
11 = 11 ?yes

(15, −41) (29, 37).
What is the sum of the two vectors?

Answers

Based on the vectors given, the sum of the vectors can be found to be (44, 4)

How to add vectors?

When given two vectors such as (15, −41) (29, 37) and you are required to add them, the sum of the vectors can be found by the formula:
= (a1 + b1, a2 + b2)

Where the vectors are:
(a1, a2) (b1, b2)

The sum of the vectors (15, −41) (29, 37) is therefore:

= (a1 + b1, a2 + b2)

= (15 + 29, -41 + 37)

= (44, -41 + 37)

= (44, 4)

In conclusion, the sum of the vectors are (44,4).

Find out more on the sum of vectors at https://brainly.com/question/2927458

#SPJ1

Sally wants to buy a used truck for her delivery business. Truck A is priced at $450 and
gets 25 miles per gallon. Truck B costs $650 and gets 35 miles per gallon. If gasoline costs
$4 per gallon, how many miles must Sally drive to make truck B the better buy?

Answers

The correct answer is 4.5

Answer:

Step-by-step explanation:

Other Questions
Reflection and RotationA. Preserve B. Do not Preserve ABC is A. Equal to the B. Twice theC. Not related to the D. Three times the And AC is A. 8,9, and 13B. 7,9 and 10C. 2, 14, and 10 D. 8,9 and 10 Need answer today please. Adrian has $620 to spend at a bicycle store for some new gear and biking outfits. Assume all prices listed include tax.He buys a new bicycle for $322.09.He buys 3 bicycle reflectors for $9.54 each and a pair of bike gloves for $22.01.He plans to spend some or all of the money he has left to buy new biking outfits for $61.82 each.Use the drop-down menu below to write an inequality representing oo, the number of outfits he can buy while staying within his budget. In 2015, what requirements for trans women did the international olympic committee drop when it changed its guidelines regarding the participation of trans women in sports?. How to do because I dont know need help ASAP 20 points If the product of the extremes is 8,then the geometric mean is..A. 2B. 4C. 2/2 to display the function arguments dialog box, click the tab, click the button in the function library group, and then click if at the drop-down list. TASK #1-Why does Dickens include acolon after 'Marley was dead'? What isthe effect?Dickens uses a colonto seperate the two portsof the opening scenrence.TASK #2 - Why does Dickens spendso much time emphasising thatMarley is dead?TASK #3- What tone/atmospheredoes the opening create? How doesDickens do this?1. 'Marley was dead: to begin with...'Marley was dead: to begin with. There is no doubt whatever about that. Theregister of his burial was signed by the clergyman, the clerk, the undertaker,and the chief mourner. Scrooge signed it. And Scrooge's name was good upon'Change, for anything he chose to put his hand to. Old Marley was as dead as adoor-nail.Mind! I don't mean to say that I know, of my own knowledge, what there isparticularly dead about a door-nail. I might have been inclined, myself, toregard a coffin-nail as the deadest piece of ironmongery in the trade. But thewisdom of our ancestors is in the simile; and my unhallowed hands shall notdisturb it, or the Country's done for. You will therefore permit me to repeat,emphatically, that Marley was as dead as a door-nail.Scrooge knew he was dead? Of course he did. How could it be otherwise? Scroogeand he were partners for I don't know how many years. Scrooge was his soleexecutor, his sole administrator, his sole assign, his sole residuary legatee, hissole friend, and sole mourner. And even Scrooge was not so dreadfully cut upby the sad event, but that he was an excellent man of business on the very dayof the funeral, and solemnised it with an undoubted bargain.The mention of Marley's funeral brings me back to the point I started from. Thereis no doubt that Marley was dead. This must be distinctly understood, or nothingwonderful can come of the story I am going to relate. If we were not perfectlyconvinced that Hamlet's Father died before the play began, there would benothing more remarkable in his taking a stroll at night, in an easterly wind, uponhis own ramparts, than there would be in any other middle-aged gentlemanrashly turning out after dark in a breezy spot-- say Saint Paul's Churchyard forinstance literally to astonish his son's weak mind.Scrooge never painted out Old Marley's name. There it stood, years afterwards,above the ware-house door: Scrooge and Marley. The firm was known as Scroogeand Marley. Sometimes people new to the business called Scrooge Scrooge, andsometimes Marley, but he answered to both names. It was all the same to him.TASK #4 - How is Scrooge introduced to ushere? What do we learn about him?TASK #5 - Why is Hamlet's father alludedto in the fourth paragraph? Research andexplain.TASK # 6-What kind of world do you think'A Christmas Carol' is set in based solely onthis opening? Plea helpppppp asap, Ik This is easy for you guys but yeah Im just stupiad At the time of retirement a couple has $250,000 in account that pays 8. 4% compounded monthly. If the couple decides to withdraw from the account monthly for 10 years, how much should they withdraw every month if they dont want any money in the account after those 10 years?. 3b(u - 8) - n(u 8) = vince is cutting a rectangular piece of pegboard to use in his garage for organization. the width of the pegboard is 8 inches less than half the length. the perimeterof the pegboard is 224 inches. what is the length of the pegboard? Which graphical element does the poet use in thisexcerpt?O short linesOright justificationO enjambmentO capitalized phrases John ordered a large three topping pizza for $7.50 and a large 8 topping pizza for $10. Write an equation in slope intercept form to describe the situation. Hello everyone. I need a help with my English homework :) If you were writing a suspense narrative how would you start it and what topic would you do it on? According to its suffix, the word kinship is an adjective.FalseTrue Ms. U.S. Bonds invested a total of $4500, some at 9% per year and the rest at 6% per year. The return for the 9% investment exceeds that from the 6% investment by $180. How much did she Invest at each rate Who controlled the Mississippi River when the United States was using it freely During 1783 a couple has narrowed down the choices of a name for their new baby to first names and middle names. how many different first- and middle-name arrangements are possible?