What’s the scale factor

Whats The Scale Factor

Answers

Answer 1

Answer:

Step-by-step explanation:

The scale is depending on the size of each cat. Lets say the larger cat is A and the smaller one is B. The scale factor from B to A is 1.75 (or 3.5/2)

when solving for scale factor you divide the original drawing and scale drawing. Original is denominator, Scale is Numerator.


Related Questions

(4 x 100,000) + (6 x 10.000) =

Answers

Answer:

answer is 400060

have a good day!!

If it's help pls give me Brainliest

tysm

Answer:

4000,060

answer explanation : when you add 4 times 100,000 ypu get 400,000 and now you get 400,000 and now you are going to muptiple 4,000,6 and 10.000 which is equal to 4,000,060

The following for loop prints the numbers 1 to 20 on one line with a space between.

for (int i = 1; i <= 20; i++)
{
System.out.print(i + " " ); // prints each value of i followed by a space on one line
}

Question

Consider the for loop example above. Assume you want to adjust the loop to print only the even values from 1 and 20. What must the loop elements - counter initialization, conditional statement, and counter modification - be set to in order to accomplish the goal.

Review all options listed below carefully. You MUST select 3 answers; one for each element/category:

Counter initialization
Conditional statement
Counter modification
a. int i = 0;
b. int i = 1;
c. int i = 2;
d. i < 20;
e. i <= 20;
f. i > 20;
g. i++;
h. i+=1-;
i. i+=2;

Answers

Answer:

Counter initialization: [tex]\verb!int i = 2![/tex].

Conditional statement: [tex]\verb!i <= 20![/tex].

Counter modification: [tex]\verb!i += 2![/tex].

Step-by-step explanation:

In the current Java for-loop in this question:

The counter initialization statement [tex]\verb!int i = 1![/tex] in this for-loop would initialize the counter variable to integer [tex]1[/tex]. The conditional statement [tex]\verb!i <= 20![/tex] holds as long as the counter is less than or equal to [tex]20[/tex]. Thus, the largest possible value for the counter would be [tex]20\![/tex].The counter modification statement [tex]\verb!i++![/tex] is equivalent to [tex]\verb!i += 1![/tex]. This statement would add [tex]1[/tex] to the value of the counter in each iteration.

The even integers between [tex]1[/tex] and [tex]20[/tex] includes [tex]2,\, 4,\, \dots,\, 20[/tex]. It would be necessary to add [tex]2[/tex] each time to get to the next number.

Since the list of even integers starts at [tex]2[/tex], it would be necessary to initialize the counter variable to [tex]2\![/tex] rather than [tex]1[/tex]. Thus, replace the counter initialization statement [tex]\verb!int i = 1![/tex] with [tex]\verb!int i = 2![/tex].

The maximum integer that this loop should print is still [tex]20[/tex]. Thus, the conditional statement [tex]\verb!i <= 20![/tex] does not need to be changed.

The for-loop should add [tex]2[/tex] to the counter each time to get to the next even integer. Thus, the counter modification statement [tex]\verb!i++![/tex] (or equivalently, [tex]\verb!i += 1![/tex]) should be replaced with [tex]\verb!i += 2![/tex].

Overall, the for-loop should be:

[tex]\begin{aligned}& \verb!for (int i = 2; i <= 20; i += 2) {!\\ &\quad \verb!System.out.print(i + " ");! \\ &\verb!}!\end{aligned}[/tex].

25. Save the simultaneous equations 2x-y=4;x+y=5​

Answers

Answer:

x = 3

Step-by-step explanation:

2x - y = 4

x + y = 5

y = 5 - x

2x - (5 - x) = 4

2x + x - 5 = 4

3x = 9

x = 3

Tell whether the sequence is arithmetic. If it is, identify the common difference.

1/2,1/3,1/4, ….

1) Not arithmetic
2) Arithmetic, common difference is 1/6
3) Arithmetic, common difference is 2/3
4) Arithmetic, common difference is 1

Answers

Answer:

Not arithmetic

Step-by-step explanation:

the difference of successive terms in arithmetic sequences should be the same. notice that:

1/3-1/2 =/= 1/3 - 1/4

so it's not arithmetic.

this sequence is known as the harmonic sequence, and its sum diverges.

The graph represents the distance a car traveled over time.
What is the constant of proportionality K.

Answers

Answer:

K=2/5

Step-by-step explanation:

So, I’m assuming that by constant of proportionality you mean slope of the line. To do that, you just figure out how y changes with x. The easiest way to do this is rise over run (y over x). If you look at the graph, there is a point that pass through (0,0) and another that passes through (5,2) so if you count how many spaces we moved up then how many spaces we moved right, you will get the slope of the line. Spaces moved up are 2-0=2 and spaced moved right are 5-0=5. Use rise over run which is going to be 2/5. So, K=2/5.

John scored 75% of the total marks How many marks did he get​

Answers

Given :-

John scored 75% of the total marks .

To Find :-

How many marks did he get .

Solution :-

Let us say that the maximum marks for the exam was x . So he got 75% of x that is ,

[tex]\longrightarrow[/tex] Marks = 75% of x

[tex]\longrightarrow[/tex] Marks = 75/100 × x

[tex]\longrightarrow[/tex] Marks = 3/4 × x

[tex]\longrightarrow[/tex] Marks = 3x/4

Hence he scored 3x/4 marks in the test.

if the output number y is -52 (y=5x-2) what is the input number? SHOW WORK

Answers

Answer:

-10

Step-by-step explanation:

The 'y' variable is associated with outputs and the 'x' variable is associated with inputs.

[tex]y = 5x-2\\\rule{150}{0.5}\\-52 = 5x - 2\\\\-52 + 2 =5x - 2 + 2\\\\-50 = 5x\\\\\frac{-50=5x}{5}\\\\\boxed{-10 = x}[/tex]

-10 (x) should be the input number.

Answer:

x = -10

Step-by-step explanation:

Equation:

-52 = 5x - 2         [tex]\longmapsto[/tex]       Add 2 to both sides

-50 = 5x              [tex]\longmapsto[/tex]       Divide both sides by 10

x = -10

-Chetan K

Use the triangle below to fill in the blanks.

Answers

Answer:

length of the opposite leg divided by the hypotenuse

Step-by-step explanation:

Evaluate [tex]\frac{bd}{a}[/tex] + c if a=−2a=-2 , b=3b=3 , c=−12c=-12 , and d=−4

Answers

Answer:

{a,c,d,b} = {49/16,29/16,2,-31/48}

Step-by-step explanation:

  [1]    3a + c - 4d = 3

  [2]    -4a + 4c + d = -3

  [3]    -a - 2d + 3b = -9

  [4]     - d = -2

// Solve equation [4] for the variable  d

  [4]    d = 2

// Plug this in for variable  d  in equation [1]

  [1]    3a + c - 4•(2) = 3

  [1]    3a + c = 11

// Plug this in for variable  d  in equation [2]

  [2]    -4a + 4c + (2) = -3

  [2]    -4a + 4c = -5

// Plug this in for variable  d  in equation [3]

  [3]    -a - 2•(2) + 3b = -9

  [3]    -a + 3b = -5

// Solve equation [1] for the variable  c

 [1]    c = -3a + 11

// Plug this in for variable  c  in equation [2]

  [2]    -4a + 4•(-3a+11) = -5

  [2]    -16a = -49

// Solve equation [2] for the variable  a

  [2]    16a = 49

  [2]    a = 49/16

// Plug this in for variable  a  in equation [3]

  [3]    -(49/16) + 3b = -5

  [3]    3b = -31/16

  [3]    48b = -31

// Solve equation [3] for the variable  b

  [3]    48b = - 31

  [3]    b = - 31/48

// By now we know this much :

   a = 49/16

   c = -3a+11

   d = 2

   b = -31/48

// Use the  a  value to solve for  c

   c = -3(49/16)+11 = 29/16

Step-by-step explanation:

so bd/a+c= 3×(-4)/-2 +(-12)= -12/-2+(-12)=6+(-12)=6-12=-6

so the answer is -6

can you plz help me....

Answers

Answer:

what is that ............

What is the y-intercept of the following table?
Gasoline Usage
Miles Driven,
Х
Gallons of
Gasoline in
Tank, y
0
15
10
14.6
20
14.2
35
13.6
60
12.6
75
12
Your answer

Answers

Answer:

15

Step-by-step explanation:

it's where you start. where your going to start you slope on the graph which means that the x would be 0

Using substitution, which value of x makes this equation true?

3+x = 10

A. 13
B. 7
C. -7
D. -13

Answers

Answer:

The answer is B. 7

Step-by-step explanation:

3 + x = 10

3 + 7 = 10

B.

x=7.

Step by step:

x+3=10.

x=7.

(I subtracted 3 on both sides)

Hope this helped!! :)

Jada, Elena, Lin walked a total of 37 miles last week. Jada walke 4 miles in Elena, and Lin walked 2 more miles than Jada.
Click on picture for more info :333









I AM BEING NICE TODAY. DONT I REPEAT DONT TAKE THE POINTS AND ANSWER A NONSENSICAL ANSWER. THIS WILL END UP IN AN REPORT LIKE BIG TIME >:<
I AM GIVING 100 POINTS AND BRAINLIEST. PRIZE GOES TO ONE WHO ANSWER FIRST AND CORRECTLY.

Answers

Elena walked=mJada walked=m+4Lin walked=m+6

ATQ

[tex]\\ \sf\longmapsto m+m+4+m+6=37[/tex]

[tex]\\ \sf\longmapsto 3m+10=37[/tex]

[tex]\\ \sf\longmapsto 3m=27[/tex]

[tex]\\ \sf\longmapsto m=9[/tex]

Elena=9miJade=13miLin=15mi

Find a number such that 20 less than twice the number is 50.

Answers

140 because 70 (the half) minus 20 is 50

The required simplified solution of the given expression is 35.

What is simplification?

The process in mathematics to operate and interpret the function to make the function or expression simple or more understandable is called simplifying and the process is called simplification.

Let the number x,
A number such that 20 is less than twice the number is 50.
2x - 20 = 50
2x = 70
x = 35

Thus, the required simplified solution of the given expression is 35.

Learn more about simplification here:

https://brainly.com/question/12501526

#SPJ5

Nicole was given a box of assorted chocolates for her birthday. Each night, Nicole
treated herself to some chocolates. There were originally 24 chocolates in the box and
Nicole ate 3 chocolates each night. Make a table of values and then write an equation
for C, in terms of t, representing the number of chocolates remaining in the box t
days after Nicole's birthday.
Number of Days After Nicole's
Birthday
Number of Chocolates Remaining in the
Box
0
1
2
3

Answers

Step-by-step explanation:

T  |  0   |   1    |  2   |  3   |

C  | 24  |  21  |  18  |  15  |

Rule:

To find a rule, we need to find 2 things- what T is multiplied by and what is added.

To find what it is multiplied, we need to see the increase or decrease in C for every T. In this equation, there is a decrease of 3, so we multiply T by -3.

To find what is added, we go to 0 T and find the corresponding number. When T is 0, C is 24 so we add 24.

We write a rule as:  y = mx + c, or in this case, c = mt + a

So the rule is c = -3x + 24

X2-7x-34=10 solve please

Answers

its -8 4/5, hope this helps

Answer:

x = 11

x = -4

Step-by-step explanation:

Use the properties of operations to write an expression equivalent to 4x + 1/2 + 2x - 3

Answers

Hey there!

4x + 1/2 + 2x - 3

COMBINE the LIKE TERMS

= (4x + 2x) + (1/2 - 3)

TRYING to SIMPLIFY THEM

4x + 2x

= 6x

1/2 - 3

= -5/2

ANSWER

6x + (-5/2)

Therefore, your answer should be: 6x + -5/2

Good luck on your assignment and enjoy your day!

~Amphitrite1040:)



12. The number of miles, y, traveled varies directly as time, x. If a group of tubers floating down the river traveled 9 miles

in two hours, how far would they travel in 5 hours? Write and solve a direct variation equation for this situation

y= 9/2x; x=10/9

y=2/9x; x=22.5

y=2/9x; y=10/9

Oy=9/2; y=22.5

Answers

Answer: y=2/9x; x=22.5

Step-by-step explanation:

Float speed is 9 miles/2 hours, or (9/2) miles/hour (mph).

Distance,y = (Speed)*(Time, x)

y = (Speed)x

y = (9/2)x

If x = 5 hours,

y = (9/2)*5, or 22.5

y=2/9x; x=22.5

solve the simultaneous equation y+1=2x y^2=3x-2​

Answers

[tex]y +1 = 2x~~~...(i)\\\\y^2 = 3x -2~~~...(ii)\\\\\text{From equation (i):}\\\\y +1 = 2x \\\\\implies y = 2x -1~~~....(iii)\\\\\text{Substitute} ~y = 2x-1~ \text{in equation (ii):}\\\\(2x-1)^2 = 3x-2\\\\\implies 4x^2 - 4x +1 = 3x -2\\\\\implies 4x^2 -4x -3x +3 =0\\\\\implies 4x(x-1) -3(x-1)=0\\\\\implies (x-1)(4x-3)=0\\\\\implies x =1 ~\text{or}~ x = \dfrac 34\\\\\text{Substitute x = 1 in equation (iii):}\\\\y = 2 -1 =1\\\\[/tex]

[tex]\text{Substitute}~ x = \dfrac 34 ~\text{in equation (iii):}\\\\\\y = 2\left(\dfrac 34 \right) -1 = \dfrac 32 -1 = \dfrac 12\\\\\text{Hence,}\\\\(x,y) = (1,1)\\\\\text{And}\\\\(x,y) = \left(\dfrac 34 , \dfrac 12 \right)[/tex]

Diagram 5 shows a triangle ABD such that AD = 17 cm, AB = 10 cm and BD = 21 cm. The straight line AC is perpendicular to the straight line BD and the value of area of triangle ABD is an integer. Calculate the length of AC, in cm. (4 marks)​

Answers

Answer:

8

Step-by-step explanation:

100 = x^2 + AC^2

17^2 = AC^2 + (21 - x)^2

289 = AC^2 + 21^2 + x^2 - 2*21*x

289 = AC^2 + 441 + x^2 - 42x

from 1st equation AC^2 + x^2 = 100

289 = 441 + 100 - 42x

289 = 541 - 42x

42x = 541 - 289 = 252

x = 252/42 = 6

so AC^2 = 100 - 6^2 = 100 - 36 = 64

AC = 8

If the ratio of grapes to walnuts to oranges is 6:6:12, how many grapes are there if the total number of fruits is 192?

Answers

Answer:

48 grapes,

Step-by-step explanation:

Firstly, let's sum up the ratio,

6+6+12=24

The fraction of grapes is therefore, 6÷24 or ¼

A ¼ of 192 is 48.

Signifying, there are 48 grapes.

A cheerilee teen willing to help,

stay positive, safe and Brainly!

Question:-

If the ratio of grapes to walnuts to oranges is 6:6:12, how many grapes are there if the total number of fruits is 192?

Answer:-

48 grapes

Explanation:-

look at the attached picture :)

y = 3x + 21. which ordered pair is a solution to the equation

Answers

the answer is (-7,21)

Answer:

(1, 24 )

Step-by-step explanation:

Substitute any value of x into the equation and evaluate for y

x = 1 → y = 3(1) + 21 = 3 + 21 = 24 , then

(1, 24 ) is a a solution to the equation

Expand & simplify 4 ( p + 3 ) + 4 ( p − 6 )

Answers

Answer:

8p -12

Step-by-step explanation:

Expand & simplify 4 ( p + 3 ) + 4 ( p − 6 )

4(p + 3) +4(p - 6) =

4p + 12 + 4p - 24 =

8p -12

Solve to get cake, cookies and a hug

Answers

First find the length of the line in the middle.

c^2=5^2 + 5^2
c = square root of 50

Then use that to find x.

8^2 - c^2 = x^2
64-50 = x^2
14 = x^2
x = square root of 14

Which graph is right?

Answers

Answer:

top one

Step-by-step explanation:

You are not including -2 (else it would be a greater or equal sign) so the dot has to be empty. You can rule out the middle options.

At this point you either remember that "greater than" means "to the right of" or you pick a convenient number, ie, 0. see that your inequality is true (zero is greater than -2) and you pick the graph where the solid line includes 0.

Yvonne sells Nine West shoes. She earns 4% commission on all her sales. Yesterday she sold
$1500 worth of shoes. How much commission did she earn?
(2 marks)

Answers

Answer:

$60

Step-by-step explanation:

4/100= 0.04

$1500 x 0.04 = 60

− 2 5 x − 9 < 9 10 solve and show work please I need help

Answers

Answer:

= -36.4

Step-by-step explanation:

- 25 x - 9 < 910

Add 9 to both sides

- 25 x < 919

Divide -25 to both sides

- 25 / - 25 < 919 / - 25

= -36.4

PLEASE HELP ME!
What is the Value of X in the solution to this System Of Equations?

5x+2y= 67

X=3y-7

Answers

Please find attached photograph for your answer.

Hope it helps.

Do comment if you have any query.

The value of x is 11.

What are linear equation in two variables?

The equations with one, zero, or an infinite number of solutions are known as linear equations with two variables. Each of the two variables in these equations has the largest exponent order of 1. A two-variable linear equation has the conventional form axe + by + c = 0, where x and y are the two variables. The answers can also be expressed as ordered pairs, such as (x, y). Two straight lines, which could be intersecting, parallel, or coincident, are included in the graphic representation of the system of linear equations in two variables.

Given equations

5x + 2y =  67

x = 3y - 7

substitute the value of x in equation 1

5(3y - 7) + 2y = 67

15y - 35 + 2y = 67

17y = 67 + 35

17y = 102

y = 6

and x = 3y - 7

x = 3(6) - 7

x = 18 - 7

x = 11

Hence value is 11.

Learn more about  linear equation in two variables;

https://brainly.com/question/24085666

#SPJ5

for what value of x and y the ordered pairs (x+3,y-2) (y-1,2x-3)​

Answers

u spammed in my question :(

X+3
=
ov*-
- (3)
ox-()*+1
O
+1
O
or-()***
X-1
+3
oy- ()
+1
-3

Answers

[tex]▪▪▪▪▪▪▪▪▪▪▪▪▪  {\huge\mathfrak{Answer}}▪▪▪▪▪▪▪▪▪▪▪▪▪▪[/tex]

The Correct choice is ~

[tex]\boxed{y = \bigg({\dfrac{1}{2} \bigg) }^{x - 3} + 1}[/tex]

[tex]\\ \sf\longmapsto y=\left(\dfrac{1}{2}\right)^{x-3}+1[/tex]

Graph attached

Other Questions
In the pie chart below, which of the following represents the amount of Earth's surface covered by water?A only B only B and C D only Jared uses two theorems together to make a conjecture about the sum of the interior angles of pentagons. What kind of reasoning is Jared using?a)Deductive Reasoningb)Inductive Reasoning 45 cows can graze a field in 13 days. How many cows will graze the same field in 9 days Practice: Find the value of the variable(s) in each figure explain your reasoning. Which expression represents the measure of segment RS?7x 37x + 5x + 5x 3 Help I need this for my homework pls Alyssa is baking a cake the recipe calls for 8 cups of flour she already put in 2 cups how many more cups does she need to add is oral tradition a reliable source for historical writings? A major goal of the Social Security Act of 1935 was to provide WHICH of the following guaranteed?A. MedicareB. EducationC. IncomeD. Automobile Care Can anybody complete this for me? PLEASE HELP ME ASAP WILL GIVE BRAINLIST!! PLEASE NO MESSING AROUND I REALLY NEED HELP Q: Plan a controlled experiment to investigate how much the temperatures of cold sand and cold water change when hot water is added to them. Assume you have access to water, sand, containers, ice, a heat source, a scale, and thermometers. Summarize your experiment in a few sentences. 2x+12=18-xa-x=3b-x=10c-x=6d-x=2 A recipe calls for 12 cups of oats. If two times the recipe needs to be made, what amount of oats will be required? What's computer hardware Find the slope of the line y=5x+4=5x+4 Can someone please solve question 8 The economy described in the speech is most similar to the economy in which of the following decades? A. 1910s B. 1930s C. 1950s D. 1960s Hey answer quick for 20 points In addition to gerrymandering, a major reason why so many members of Congress are elected from "safe" districts is Which state's representation could be most greatly affected by the slave population?