Mr. Cauchy spends 35% of his monthly income on rent. What is his monthly income if his rent is $1400 per month?

Answers

Answer 1
1,400 / 35%

4,000 (monthly income)

Proof: 4,000 x 35% = 1,400 (rent per month)

Related Questions

Please help ASAP




A map uses a scale of 3 centimeters to represent 20 miles. The distance between Mt. Hope and
Camden is 56 miles. Which proportion can be used to find 2, the distance between Mt. Hope and
Camden on the map?

Please help ASAP A map uses a scale of 3 centimeters to represent 20 miles. The distance between Mt.

Answers

Answer:

Option B is correct

Step-by-step explanation:

Hope that helped u

Karen wants to advertise how many chocolate chip are in in each Big Chip cookie at her bakery. She randomly selects a sample of 55 cookies and finds that the number of chocolate chips per cookie in the sample has a mean of 15.4 and a standard deviation of 3.2. What is the 99% confidence interval for the number of chocolate chips per cookie for Big Chip cookies? Enter your answers to accurate to one decimal place

Answers

99% confidence interval for the number of chocolate chips per cookie is

15.4 ± 1.1115

What is confidence interval?

The mean of sample plus and minus the range of that sample constitutes a confidence interval.

Within a specific level of confidence, this is the range of values anticipated to fall within, if the test is repeated.

Number of cookies in the sample n = 55

Mean μ = 15.4

Standard deviation s = 3.2

Confidence = 99%

For 99% confidence interval Z-value = 2.576

Confidence interval

= μ ± Zs/√n

= 15.4 ± 2.576×3.2/√55

= 15.4 ± (8.2432/7.4162)

= 15.4 ± 1.1115

Hence, 15.4 ± 1.1115 is the 99% confidence interval for the number of chocolate chips per cookie.

Learn more about confidence interval here:

https://brainly.com/question/24131141

#SPJ1

What is the area of this square

What is the area of this square

Answers

formula: A = L x W

given: 19 mm
19(19)= 361

answer: 361

What is the equation of the exponential graph below?

What is the equation of the exponential graph below?

Answers

Answer: C: y=6×6^x

Step-by-step explanation:

Hope this helps! Good luck!

what’s the answer to this problem , figure out the area and perimeter of this triangle

whats the answer to this problem , figure out the area and perimeter of this triangle

Answers

Answer:

area: 5×27÷2

perimeter:8+27+34

Anna and daniel are playing fraction capture. Anna is trying to find sectiones that add up to 3/4 she knows that 1/4 + 1/4 + 1/4 = 3/4 but she wants to earn an extra point for using a frction with a diffrent denominator. Write another number sentence Anna could use to show a sum of 3/4

Answers

Answer: \(\frac{1}{4} +\frac{1}{2}\)

Step-by-step explanation:

given data:

fraction = \(\frac{3}{4}\)

Solution:

se can make use of the fraction \(\frac{1}{4} + \frac{1}{2}\) to get same answer as shown bellow.

\(=\frac{1}{4} + \frac{1}{2}\)

first we look for the lcm of the denominators.

\(= \frac{2+1}{4}\)

\(=\frac{3}{4}\)

.

Write an equation for the line parallel to y = 6x + 14 that contains P(9, 1).

Answers

Answer:

y= 6x-53

Step-by-step explanation:

We know that parallel lines have the same slope. So, this line will also have a slope of 6.

We now have: y=6x+b

We need to find b. One way to this is to plug the coordinates of point P(9, 1).

We plug in 9 for x and 1 for y to solve for b:

1=6(9)+b

1=54+b

b=-53

So now we have the equation: y=6x-53

The length of three boards added together is 7.2 meters. The second board is twice the length of the first. The third board is three times the length of the first. What is the length of the three boards?

Answers

Answer:

Board 1 = 1.2m

Board 2 = 2.4m

Board 3 = 3.6m

Step-by-step explanation:

Board 1 = x

Board 2 = 2x

Board 3 = 3x
x + 2x + 3x = 6x

7.2 /6 = 1.2

Board 1 = 1.2

Board 2 = 2 (1.2) = 2.4

Board 3 = 3 (1.2) = 3.6

The ratio of the weight of max to that of his friend artur is 5:9. artur goes on a diet and lose 4kg and now the ratio of their weights is 5:7. how much does artur weigh now?

Answers

After losing 4 Kg ,the weight of Artur is 14 Kg .

In the question ,

it is given that ,

the ratio of weight of Max : Artur is 5 : 9 .

So the weights of Max and Artur before dieting is 5x and 9x .

Now Artur goes on dieting and lose 4 Kg weight and

the ratio of weight of Max and Artur becomes 5:7  .

and the weights of Max and Artur after dieting is  5x and 7x .

Present weight of Artur = 7x .

As we can see that the change in Artur weight is 9x - 7x = 2x

According to the question

2x = 4

x = 2

hence Artur now weighs 7*(2) = 14 Kg

Therefore , after losing, 4 Kg the weight of Artur is 14 Kg .

Learn more about Ratio here

https://brainly.com/question/834594

#SPJ1

find the area of the parallelogram with vertices a(−5, 6), b(−3, 9), c(1, 7), and d(−1, 4).

Answers

The area of the parallelogram is 16 square units

We can use the cross product of two vectors to find the area of the parallelogram.

Let's take the vectors AB and AC:

AB =

(-3, 9) - (-5, 6) = (2, 3)

AC =

(1, 7) - (-5, 6) = (6, 1)

The cross product of these two vectors is:

AB x AC = (2, 3, 0) x (6, 1, 0) = (0, 0, 16)

The magnitude of this vector is the area of the parallelogram:

|AB x AC| = sqrt(0² + 0² + 16²) = 16

To learn more about

Parallelogram

brainly.com/question/28854514

#SPJ11

what are the angle measures given the figure is a rhombus??

what are the angle measures given the figure is a rhombus??

Answers

Answer:

28° at top and 1° at bottom

Step-by-step explanation:

If you look at it u can see that it's even so you would know it would be the same answer on each side.

Consider the following method, which implements a recursive binary search. /** Returns an index in myList where target appears, * if target appears in myList between the elements at indices * low and high, inclusive; otherwise returns -1. * Precondition: myList is sorted in ascending order. * low >= e, high < myList.size(), myList.size() > 0 */ public static int binarySearch(ArrayList mylist, int low, int high, int target) { int mid = (high + low) / 2; if (target myList.get(mid)) { return binarySearch(myList, mid + 1, high, target); } else if (myList.get(mid).equals(target)) { return mid; } return -1; } Assume that inputlist is an ArrayList of Integer objects that contains the following values. [e, 10, 30, 40, 50, 70, 70, 70, 70] What value will be returned by the call binarySearch(inputList, 6, 8, 70) ? O a 8 -1 O 5 7 6

Answers

The value returned by the call binarySearch (input List, 6, 8, 70) is 7.

The method provided in the question is a recursive binary search that searches for a target value within a sorted ArrayList.

The binarySearch method takes four arguments - the ArrayList to search within, the lower and upper bounds of the search range, and the target value.
In this case, the input ArrayList is [e, 10, 30, 40, 50, 70, 70, 70, 70].

The call to binarySearch(inputList, 6, 8, 70) will search for the value 70 within the sub-range of the ArrayList from index 6 to index 8, inclusive.
The mid index is calculated as

(8+6)/2 = 7    

The value at index 7 is also 70, which matches the target value.

Therefore, the method will return the index 7, indicating that the target value was found at that position within the ArrayList.
For similar questions on binarySearch

https://brainly.com/question/30150564

#SPJ11

Write the equation of the line given two points on the line: (-3,-3) (-5,-3)

Answers

Answer:

y= -3

Step-by-step explanation:

I'll assume it is a linear line (straight line).

Sense the y-value doesn't change and stays -3, the equation for the line would be y= -3

And just so you know, the slope of the line would be 0.

5x+7y=3914. I'm not quite sure how to write the x and y! First answer will get Brainliest, thanks!

Answers

Answer:

hanges made to your input should not affect the solution:

(1): Dot was discarded near "4.".

Rearrange:

Rearrange the equation by subtracting what is to the right of the equal sign from both sides of the equation :

                    5*x+7*y-(3914)=0

STEP

1

:

Equation of a Straight Line

1.1     Solve   5x+7y-3914  = 0

Tiger recognizes that we have here an equation of a straight line. Such an equation is usually written y=mx+b ("y=mx+c" in the UK).

"y=mx+b" is the formula of a straight line drawn on Cartesian coordinate system in which "y" is the vertical axis and "x" the horizontal axis.

In this formula :

y tells us how far up the line goes

x tells us how far along

m is the Slope or Gradient i.e. how steep the line is

b is the Y-intercept i.e. where the line crosses the Y axis

The X and Y intercepts and the Slope are called the line properties. We shall now graph the line  5x+7y-3914  = 0 and calculate its properties

Graph of a Straight Line :

 

Calculate the Y-Intercept :

Notice that when x = 0 the value of y is 3914/7 so this line "cuts" the y axis at y=559.14286

 y-intercept = 3914/7  = 559.14286

Calculate the X-Intercept :

When y = 0 the value of x is 3914/5 Our line therefore "cuts" the x axis at x=782.80000

 x-intercept = 3914/5  = 782.80000

Calculate the Slope :

Slope is defined as the change in y divided by the change in x. We note that for x=0, the value of y is 559.143 and for x=2.000, the value of y is 557.714. So, for a change of 2.000 in x (The change in x is sometimes referred to as "RUN") we get a change of 557.714 - 559.143 = -1.429 in y. (The change in y is sometimes referred to as "RISE" and the Slope is m = RISE / RUN)

   Slope     = -1.429/2.000 = -0.714

Geometric figure: Straight Line

 Slope = -1.429/2.000 = -0.714

 x-intercept = 3914/5 = 782.80000

 y-intercept = 3914/7 = 559.14286

Step-by-step explanation:

Answer:

y= -5/7x+3914/7

Step-by-step explanation:

Slope form is y=mx+b

5x+7y=3914

7y = -5x+3914 minus the 5x from each side

7y=-5x+3914  divide 7 from each side --> y= -5/7x+3914/7

So, 5x+7y=3914 is in ax+by=c (standard form) the "a" in "ax" can't be negative either.

a tower thats 54m tall cost a shadow 18m long. A building 6m tall cost a shadow of

Answers

Answer:

2m

Step-by-step explanation:

\(\frac{54}{18} =\frac{6}{x}\)

54x=108

x=2m

A triangle abc has angle measures of 45,45 and 90 and two congruent (equal sides). How would this triangle be classified?

Answers

Answer:

A right triangle

Step-by-step explanation:

The angle of 90 degrees is a right angle

Giorgi paid 1 GEL and 25 tetris for 5 erasers and 2 rulers, Tornike paid 1 GEL and 5 tetris for 2 erasers and 3 rulers.
Let's say the price of an eraser is x white, the price of a ruler is y white. To find these prices

Answers

The requried price of an eraser and ruler is given as 0.15 Tetris and 0.25 Tetris respectively.

What are simultaneous linear equations?

Simultaneous linear equations are two- or three-variable linear equations that can be solved together to arrive at a common solution.

1 GEL and 25 tetris = 1.25
1 GEL and 5 tetris = 1.05

We can set up two equations to find the unknown values of x and y:

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

1.05 = 2x + 3y  - - - - - (2)

To solve the system of equations, we can substitute the value of y in the first equation using the second equation:

y = (1.25 - 5x) / 2

Substituting this value of y in the second equation:

1.05 = 2x + 3((1.25 - 5x) / 2)

x = 0.15

Now,
Put x = 0.15 equation 1,
e get
y = 0.25

Thus, the requried price of an eraser and ruler is given as 0.15 Tetris and 0.25 Tetris respectively.

Learn more about simultaneous equations here:

https://brainly.com/question/16763389

#SPJ1

Can someone help me out with this question fast!?!?!

Can someone help me out with this question fast!?!?!

Answers

Answer is -4 < x < 1 (Third choice)

Step by step

-26 <4x -10<-6

-26 < 4x - 10 and 4x - 10 < -6

Solve each

-26 < 4x -10
add 10 to both sides to isolate variable

-26 + 10 < 4x -10 + 10
Simplify

-16 < 4x
Divide both sides by 4 to solve for x

-4 < x solution #1

4x - 10 < -6
add 10 to both sides to isolate x

4x - 10 + 10 < -6 + 10
Simplify

4x < 4
Divide both sides by 4 to solve for x

4/4 x < 4/4
Simplify

x < 1 solution #2

Now combine the two solutions


-4 < x and x < 1
Merge overlapping x

-4 < x < 1 is your answer


Phillip is rolling two number cubes. How many different ways can he roll the number cubes and get a sum of 6?

A. 3
B. 4
C. 5
D. 6

Answers

the answer is C. 5 because the probability is 5/36 giving you 5 ways.

Freight Train Cars In a train yard there are 4 tank cars, 12 boxcars, and 7 flatcars. How many ways can a train be made up consisting of 2 tank cars, 5 boxcars, and 3 flatcars

Answers

The total number of ways to make a train consisting of 2 tank cars, 5 boxcars, and 3 flatcars is: 166,320 ways.

To calculate the number of ways to make a train consisting of 2 tank cars, 5 boxcars, and 3 flatcars, we need to use the combination formula.

The number of tank cars, boxcars, and flatcars in the train yard are given as follows:

4 tank cars 12 boxcars 7 flat cars

We need to choose 2 tank cars out of 4, 5 boxcars out of 12, and 3 flatcars out of 7.

The combination formula is given by:

nCr = n! / r! * (n - r)!

where n is the total number of objects,

r is the number of objects being chosen at a time,

and ! represents the factorial of a number.

Substituting the values in the formula:

2 tank cars out of 4:

n1 = 4C2 = 4! / 2! * (4 - 2)! = 6 ways 5 boxcars out of 12:

n2 = 12C5 = 12! / 5! * (12 - 5)! = 792 ways 3 flatcars out of 7:

n3 = 7C3 = 7! / 3! * (7 - 3)! = 35 ways

Therefore, the total number of ways to make a train consisting of 2 tank cars, 5 boxcars, and 3 flatcars is:

n1 x n2 x n3= 6 x 792 x 35= 166,320 ways.

Learn more about combinatorics here:

https://brainly.com/question/32015929

#SPJ11

You are on a 4.7 mile run and have already 1.97 miles. How many more miles do you need to run? ​

Answers

Answer:

2.73

Step-by-step explanation:

You would need to run 2.73 miles to have ran 4.7 miles in all.

4.7 - 1.97

Mrs. Peabodys classroom was collecting
canned goods for a food drive. Her class set
a goal of collecting 300 cans. At the end of
the food drive, they collected 270 cans. What
percentage of their goal did they meet?

Answers

Answer:

570

Step-by-step explanation:

yan sagot ko ehh balakajan

What is the solution to the following system of equations y x2 10x 11?

Answers

The solution to the given system of equations y = x² + 10x + 11, y = x² + x - 7 is x = -2, y = -5.

The given set of equations

y = x² + 10x + 11 --- eqn(1)

y = x² + x - 7 --- eqn(2)

Solving the equations by elimination method

⇒ Subtracting eqn 2 from eqn 1, we get

⇒ y - y = x² + 10x + 11 - (x² + x - 7)

⇒ 0 = x² + 10x + 11 - x² - x + 7

⇒ 0 = 9x + 18

⇒ 9x = -18

⇒ x = -2

Put the value of x in eqn 1, and we get

⇒ y = (-2)² + 10(-2) + 11

⇒ y = 4 - 20 + 11

⇒ y = -5

To know more about elimination method, we get

https://brainly.com/question/14619835

#SPJ4

Please help me before my mom starts yelling at me about not gettting my assignments done

Please help me before my mom starts yelling at me about not gettting my assignments done

Answers

Answer:

D. no solutions

10
12
16
A
A sequence of transformations maps AABCTO AABC. The sequence of transformations that maps ABC to ABC is a reflection across
followed by a translation
Reset
Next
veyanch 48997633/4
hp

101216AA sequence of transformations maps AABCTO AABC. The sequence of transformations that maps ABC

Answers

Answer:

The sequence of transformations that maps ΔABC to ΔA'B'C' is the reflection across the line y = x and a translation 10 units right and 4 units up, equivalent to T₍₁₀, ₄₎

Step-by-step explanation:

For a reflection across the line y = -x, we have, (x, y) → (y, x)

Therefore, the point of the preimage A(-6, 2) before the reflection, becomes the point A''(2, -6) after the reflection across the line y = -x

The translation from the point A''(2, -6) to the point A'(12, -2) is T(10, 4)

Given that rotation and translation transformations are rigid transformations, the transformations that maps point A to A' will also map points B and C to points B' and C'

Therefore, a sequence of transformation maps ΔABC to ΔA'B'C'. The sequence of transformations that maps ΔABC to ΔA'B'C' is the reflection across the line y = x and a translation 10 units right and 4 units up, which is T₍₁₀, ₄₎

Check whether the relation R defined in the set {1, 2, 3, 4, 5, 6} as
R = {(a, b): b = a + 1} is reflexive, symmetric or transitive.

Answers

Answer:

The answer is R is neither reflexive, nor symmetric, nor

transitive.

Step-by-step explanation:

Let A = {1, 2, 3, 4, 5, 6}.

A relation R is defined on set A as:

R = {(a, b): b = a + 1}

R = {(1, 2), (2, 3), (3, 4), (4, 5), (5, 6)}

We can find (a, a) ∉ R, where a ∈ A.

For instance,

(1, 1), (2, 2), (3, 3), (4, 4), (5, 5), (6, 6) ∉ R

R is not reflexive.

It can be observed that (1, 2) ∈ R, but (2, 1) ∉ R.

R is not symmetric.

Now, (1, 2), (2, 3) ∈ R

But, (1, 3) ∉ R

R is not transitive

Thus, R is neither reflexive, nor symmetric, nor transitive.

Multiply 8/11 by the reciprocal of -16/121

Answers

Answer: -11/2

Step-by-step explanation:

First, find the reciprocal of -16/121. Which is -121/16 (you can put the negative sign anywhere). Now, you must multiply the two fractions:

\(\frac{8}{11} *-\frac{121}{16}\)      

You can cross out the terms 8 and 16 because they can be simplified into 1 and 2. And you can cross out 11 and -121 because they can be simplified into 1 and -11:

= \(\frac{1}{1} * -\frac{11}{2}\)

Now multiply the numerators together, and multiply the denominators:

= \(-\frac{11}{2}\)

What is the simple interst on $32,000 at 7% interest for 6 months?
$13,440
$1,120
$6,720
$2,240

Answers

Answer:

B. $1120

Step-by-step explanation:

Use simple interest formula:

I = Prt

Given:

P = $32000r = 7% = 0.07t = 6 months  = 0.5 year

Find the amount of interest:

I = 32000*0.07*0.5 = 1120

Correct choice is B

Principal=P=32000Interest rate=R=7Time=0.5yr

Interest be I

\(\\ \tt\hookrightarrow I=\dfrac{PRT}{100}=\dfrac{32000(7)(0.5)}{100}=\dfrac{112000}{100}=1120\$\)

Identify the length of JK.

ASAP please

Identify the length of JK. ASAP please

Answers

Answer:

15x+5

Step-by-step explanation:

(7x+5)+(8x)

R = {(-3, -2), (-3, 0), (-1, 2), (1, 2)}

Find the values of a and b that complete the mapping diagram.

Answers

what is diagram mapping?

An effective visual representation of a function or a mapping between two sets is a mapping diagram. It consists of two vertical columns, one of which represents the domain set items and the other of which represents the range set elements. The items in the range set that match to those in the domain set are listed in the right column, and vice versa.

I assume you are given a mapping rule that relates elements in a set to other elements in another set, and you are asked to complete a mapping diagram based on this rule.

If the mapping rule is not specified, we cannot determine the values of a and b. However, assuming that the mapping rule is such that each element (x, y) in the set R is mapped to \((x + a, y + b)\), we can complete the mapping diagram as follows:

The given set R is:

R = {(-3, -2), (-3, 0), (-1, 2), (1, 2)}

If we apply the mapping rule to each element in R, we get:

(-3, -2) → (-3 + a, -2 + b)

(-3, 0) → (-3 + a, 0 + b)

(-1, 2) → (-1 + a, 2 + b)

(1, 2) → (1 + a, 2 + b)

To complete the mapping diagram, we need to find the values of a and b such that each mapped element is in the set R. That is, we need to find a and b such that:

(-3 + a, -2 + b) ∈ R

(-3 + a, 0 + b) ∈ R

(-1 + a, 2 + b) ∈ R

(1 + a, 2 + b) ∈ R

Substituting the values of R into each of these equations, we get:

(-3 + a, -2 + b) = (-3, -2), which gives a = 0 and b = 0

(-3 + a, 0 + b) = (-3, 0), which gives a = 0 and b = 0

(-1 + a, 2 + b) = (-1, 2), which gives a = 0 and b = 0

(1 + a, 2 + b) = (1, 2), which gives a = 0 and b = 0

Therefore, the values of a and b that complete the mapping diagram are a = 0 and b = 0.

To know about diagram mapping:

https://brainly.com/question/29006330

#SPJ9

Other Questions
What is the slope of the line thatpasses through these two points?(1, -2)(3, 4)Remember, given two points,(x1, y)(x2;Y2)Slope=rise (y2-y)run(x2-x1)Simplify your answer completely.Enter Explain how an outer covering composed of a section of a cell membrane from the host would protect hiv from attack by the hosts immune system I neeeeeeeeeeeed this 10-2 eeaaasadaddadeeee Rob spends 1/2 of his earnings this weeks on bills and then buys a video game for $25. 75. How many much of his earnings from this week does rob have left? Factor f(x) = x 3x - 12x + 54x - 40 with real coefficients given that 3-i is a zero of f(x).f(x) = x 3x - 12x +54x - 40 = Assume a 16-bit floating point format that uses 1-bit for the sign, 6-bits for the exponent and 9- bits for the floating point number. What would the offset for the exponent be? what range of numbers could be represented in floating point notation. What about immediate numbers? represent 5. 123 and -4. 321 in this new format The Face of Quarantineb. Is the text coherent? (Is there a topic sentence? Are the major ideas placedin a separate paragraph?)c. Are the sentences cohesive? What transitional devices are being used?d. What can you say about the language use? What is the style of writing, formalor informal, written or spoken? Are there some denotative or connotativelanguage, figures of speech, or idiomatic expressions? The radius of a circle is 7 meters. What is the length of a 135 arc? What are the three main points of daltons atomic theory? here to searchO The responsibility to issue driver's licenses should be given to individual states.QUESTION 2Which of these is a question used to develop a thesis statement?O What evidence supports my position?O Why is this important to me or my reader?O What does my reader believe about the topic?O Where can I find more information about my topic?Click Save and Submit to save and submit. Click Save All Answers to save all answers. Cognitive tasks use either the left or right side of the brain without overlap and without flexibility. true false costs should be allocated to segments for internal decision-making purposes blank______ the allocation base actually drives the cost being allocated cuanto suman los angulos interiores de un hexagono? Escribe solo el numero que corresponda a la cantidad, sin el simbolo de grados in a ________ strategy, customer orders drive(s) manufacturing and distribution operations.a. supply Chainb. Salesc. producingd. inventory Minimum contacts with a state are necessary for jurisdiction over a nonresident defendant, including corporations True False Which of the following explain why an increase in interest that bank receive from the Fed on the required and excess reserves that banks hold with the Fed, would also increase the interest rates that commercial banks charge their borrowers?O Because the interest rate that banks receive from the Fed on reserves and the interest rate that banks charge borrowers must legally be the same, a higher rate from Fed must equal a higher reward for banks when lending to consumers and businesses.O If the interest paid to commercial banks from the Fed is increased, banks will deposit more of their excess reserves with the Fed. This will increase the rates for households and businesses that borrow from the Fed directly too.O Since the interest that bank's receive from the Fed on excess reserves represents an opportunity cost for banks when lending to their borrowers, a higher rate from Fed will require a higher reward for banks when lending to consumers.O Since the interest that bank's receive from the Fed on excess reserves represents is the reward for banks when lending to their borrowers, a higher rate from Fed equals a higher reward for banks when lending to consumers. Select the correct verb. Then, find the direct object. If there is no direct object, select none.Our cat often ___ in the sun.(lays, lies)Direct object:(cat, sun, none) D Question 2 The bank is paying 9.61% compounded annually. The inflation is expected to be 9.49% per year. What is the inflation rate?. Enter your answer as percentage, without the % sign, Provide 2 d Which of the following is a legacy of Romulus?Roman art, and architectureWriting an account of Roman historyNaming of Rome, and Roman lawHis influence on Roman philosophy