Hellooo i’m pretty sure x is 30 but can someone tell me what im meant to write for the reason. Thank youuu

Hellooo Im Pretty Sure X Is 30 But Can Someone Tell Me What Im Meant To Write For The Reason. Thank Youuu

Answers

Answer 1

Answer:

2x and 180 - 5x are complementary angles.

2x + 180 - 5x = 90

-3x + 180 = 90

-3x = -90

x = 30


Related Questions

On a United States map, 1 inch represents
240 miles. Using this scale, find the distance
represented by 3.5 inches.

AND

On a California map, 1 inch represents 150 miles. Using this scale, find the distance represented by 2.5 inches.

Answers

5. C
6. B
Steps on paper

Draw a Triangle whose tangent is 2. Find the values of the other five trigonometric functions

Answers

Answer:

you gonna answer it

Step-by-step explanation:

Because that's yours book

A penguin walks 10 feet in 6 seconds. At this speed:
1. How far does the penguin walk in 45 seconds?
2. How long does it take the penguin to walk 45 feet?
Explain or show your reasoning.

Answers

Answer:

1. 75 feet

2. 27 seconds

Step-by-step explanation:

1. If six seconds is equal  to 10 feet that means that 42 seconds is equal to 70 feet (6 X 7 = 42) It also means that 3 seconds is equal to 5 feet. (42 + 3 = 45)

2. If 6 seconds is 10 feet, then 6 X 4 is 40 feet (24) And since 5 feet is equal to   3 seconds then we get 24 + 3 = 27

Please please give answer

Answers

Answer:

A

Step-by-step explanation:

iTS JUST a

Answer:

Step-by-step explanation:

i cant see it

WHAT IS THE LEGENTH OF ML. PLEASE HELP NOW​

Answers

Answer:

gdfgdf

Step-by-step explanation:

Drag each tile to the correct box.
Match each equation with its solution.

x = -0.4
x = 10
x = 2
x = -10
Equation
Solution
x − 6 = -4
arrowRight
x + 3 = -7
arrowRight
5x = -2
arrowRight
0.5x = 5
arrowRight

Answers

x - 6 = - 4

Answer: x = 2

x + 3 = -7

Answer: x = -10

5x = -2

Answer: x = -0.4

0.5x = 5

Answer: x = 10

The solutions to the equations as arranged are 2, -10, -0.4 and 10 respectively

Solving equations

Given the following equations

x − 6 = -4

Add 6 to both sides

x - 6 + 6 = -4 + 6

x = -4 + 6

x = 2

For the equation x + 3 = -7

Subtract 3 from both sides

x + 3 -3 = -7 - 3

x = -10

For the equation 5x = -2

x = -2/5

x = -0.4

For the equation

0.5x = 5

x = 5/0.5

x =10

Hence the solutions to the equations as arranged are 2, -10, -0.4 and 10 respectively

Learn more on equation here: https://brainly.com/question/2972832

#SPJ2

User will enter three grades averages (exam, project, and lab). Determine which of the three grades (consider any ties) is the highest grade and display the results. Determine which of the three grades (consider any ties) is the lowest grade and display the results. Check for any grades failing below 70% and display each individual grade. Calculate the average grade using the three grades and display the average grade. If they are all 70 and above then display the fact that they are all 70% or above.

Answers

Answer:

In Python:

exam = int(input("Exam: "))

project = int(input("Project: "))

lab = int(input("Lab: "))

if exam >= project and exam >= lab:

   print("Highest Grade: "+str(exam))

elif project >= exam and project >= lab:

   print("Highest Grade: "+str(project))

else:

   print("Highest Grade: "+str(lab))

   

if exam <= project and exam <= lab:

   print("Lowest Grade: "+str(exam))

elif project <= exam and project <= lab:

   print("Lowest Grade: "+str(project))

else:

   print("Lowest Grade: "+str(lab))

   

print("\nGrades below 70")

if exam < 70:

   print("Exam: "+str(exam))

if project < 70:

   print("Project: "+str(project))

if lab < 70:

   print("Lab: "+str(lab))

   

print("\nAverage: "+str((exam+project+lab)/3))

if exam > 70 and project >70 and lab > 70:

   print("All grades are above 70")

Step-by-step explanation:

The next three lines get input for exam, project and lab

exam = int(input("Exam: "))

project = int(input("Project: "))

lab = int(input("Lab: "))

This condition checks if exam is the highest grade

if exam >= project and exam >= lab:

If true, exam is printed as the highest grade

   print("Highest Grade: "+str(exam))

This condition checks if project is the highest grade

elif project >= exam and project >= lab:

If true, project is printed as the highest grade

   print("Highest Grade: "+str(project))

If otherwise

else:

lab is printed as the highest grade

   print("Highest Grade: "+str(lab))

This condition checks if exam is the lowest grade    

if exam <= project and exam <= lab:

If true, exam is printed as the lowest grade

   print("Lowest Grade: "+str(exam))

This condition checks if project is the lowest grade    

elif project <= exam and project <= lab:

If true, project is printed as the lowest grade

   print("Lowest Grade: "+str(project))

If otherwise

else:

lab is printed as the lowest grade

   print("Lowest Grade: "+str(lab))

   

This prints the header "Grades below 70"

print("\nGrades below 70")

This checks if exam is below 70.

if exam < 70:

If true, exam score is printed

   print("Exam: "+str(exam))

This checks if project is below 70

if project < 70:

If true, project score is printed

   print("Project: "+str(project))

This checks if lab is below 70

if lab < 70:

If true, lab score is printed

   print("Lab: "+str(lab))

   

This calculates and prints the average

print("\nAverage: "+str((exam+project+lab)/3))

This checks if all three scores are above 70

if exam > 70 and project >70 and lab > 70:

If true, the the message that all are above 70, is printed

   print("All grades are above 70")

thank you in advance

Answers

Answer:

the answer is option (b)

Answer:

First option: y= -4/3x + 7

Step-by-step explanation:

It's perpendicular

It cost a bicycle company $8750 to make 50 bikes in its first month of operation and $14925 to make 115 bikes during its second month. Find a linear equation to express the company’s monthly production cost, y, in terms of the number, x of bikes it makes. y=?

Answers

Answer:

Step-by-step explanation:

[tex]y=mx+b\\ \\ m=\frac{14925-8750}{115-50}=95\\ \\ y=95x+b,\ (50,8750)\\ \\ 8750=95(50)+b\\ \\ 8750=4750+b,\ b=4000\\ \\ y=95x+4000[/tex]

? QUESTION
Learning Page
The ratio of men to women working for a company is 5 to 4. If there are 243 employees total, how many women work for the company?
OO EXPLANATION

Answers

Answer:

108 women

Step-by-step explanation:

add the parts of the ratio together

5 + 4 = 9

divide the total number of employees by 9

243/9 = 27

now multiply the parts of the ratio by 27.

5 X 27 = 135

4 X 27 = 108

A percentage is another way to write a _________________.


Answers

Answer: fraction

Step-by-step explanation:

Answer:

Decimal

Step-by-step explanation:

For example, 10% can also be .10.

You just move the decimal two places to the right or left depending on which one you want.

3) A sample of 42 grams of an unknown substance has a half-life of 1,300 years.

(a) Write an equation to determine the amount of substance, S, left after t years.

(b) Approximately how long will it take for 0.2 grams of substance to remain (to the nearest year)?

Answers

Answer:

a) [tex]S(t) = 42(0.9995)^t[/tex]

b) It will take 10,692 years.

Step-by-step explanation:

Exponential function to determine the amount of substance:

An exponential function to determine the amout of substance after t years is given by:

[tex]A(t) = A(0)(1-r)^{t}[/tex]

In which A(0) is the initial amount and r is the decay rate, as a decimal.

(a) Write an equation to determine the amount of substance, S, left after t years.

Half-life of 1300 years means that [tex]A(1300) = 0.5A(0)[/tex].

We use this to find r. So

[tex]A(t) = A(0)(1-r)^{t}[/tex]

[tex]0.5A(0) = A(0)(1-r)^{1300}[/tex]

[tex](1-r)^{1300} = 0.5[/tex]

[tex]\sqrt[1300]{(1-r)^{1300}} = \sqrt[1300]{0.5}[/tex]

[tex]1 - r = 0.9995[/tex]

[tex]r = 0.0005[/tex]

Sample of 42 grams means that [tex]A(0) = 42[/tex]. So

[tex]A(t) = A(0)(1-r)^{t}[/tex]

Replacing A by S, just for notation purposes

[tex]S(t) = 42(0.9995)^t[/tex]

(b) Approximately how long will it take for 0.2 grams of substance to remain (to the nearest year)?

This is t when [tex]S(t) = 0.2[/tex]. So

[tex]S(t) = 42(0.9995)^t[/tex]

[tex]0.2 = 42(0.9995)^t[/tex]

[tex](0.9995)^t = \frac{0.2}{42}[/tex]

[tex]\log{(0.9995)^t} = \log{\frac{0.2}{42}}[/tex]

[tex]t\log{0.9995} = \log{\frac{0.2}{42}}[/tex]

[tex]t = \frac{\log{\frac{0.2}{42}}}{\log{0.9995}}[/tex]

[tex]t = 10692[/tex]

It will take 10,692 years.

6 family members share 1/4 of a of chocolate fudge what fraction of a pound does each family member get if they share equally .
A.24
B.1/10
C.1/24
D.10​

Answers

Answer:

The answer is 1/10

Step-by-step explanation:

please help me asap!

Answers

Answer:

ST=18

Step-by-step explanation:

H(x)= -x^2+ 3x + 5 What is the average rate of change from x = 3 to x = 5

Answers

Answer:

f(x)=x^(2),[2,3]

-2x-h+3

Step-by-step explanation:

Darby bought a rare baseball card for $2,000. Three years later, the value of the card had increased 35% of its original value. By how much did the value of Darby’s baseball card increase?

$___

Answers

The card value after its increase of 35% would be $2,700.

What is the y value of y=2x-3 and y=3x-7

Answers

Step-by-step explanation:

hope the above solution will help you

C gives the cost, in dollars, of a cafeteria meal plan as a function of the number of meals purchased, n. The function is represented by the equation C(n) = 4 + 3n. Find C(10) and explain what your answer means in context to the situation

Answers

Answer:

Ill help if u still need

Step-by-step explanation:

X^4 - 3x^2 + 2y - 1 is a polynomial of degree

Answers

Answer:

thankyou uwhdjaossbehsa
quartic or of the 4th degree

17. Which is M=9pn solved for p? (1 point)
p = M/n p= M-9n. p= 9n/M. p=M/9n

Answers

B 56

Step-by-step explanation:

Please help me with this question I really need help!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Answers

Answer:

Step-by-step explanation:

The angles of a triangle add up to 180°.

∠4 = 180°-35°-90° = 55°

Given that 7x – 4y = 6
Find x when y=9

Answers

Answer:

6

Step-by-step explanation:

Substitute y for 9: 7x - 36 = 6

Add 36 to both sides: 7x = 42

Divide both sides by 7: x = 6

It's 6, do you need something more simplified?

129-7+6
va dau coroana​

Answers

Answer:

The correct answer is 128

15 PTS NEED ASAP HELP !!!

Answers

Answer:

use photo math it helps.......

Answer:

-1

Step-by-step explanation:

Let's simplify this equation one at a time using the order of operations:

|2 - 5| - (12÷4 - 1)^2

3 - (3 - 1)^2

3 - 2^2

3 - 4 = -1

Hope this helps!!

WILL GIVE BRAINLIEST!!
In this lesson, you will learn more about the properties and characteristics of triangles and.

rectangles
cylinders
rhombii
circles

Answers

Answer:

rectangles

Step-by-step explanation:

Answer:

rhombii

Step-by-step explanation:

Question 5 (4 points)
(06.01)

Evaluate the expression 43 ÷ (7 − 3) × 2. (4 points)

Answers

Answer:

21.5

Step-by-step explanation:

(solve in parentheses first)

43/(7-3)x2

(43/4)x2

86/4

21.5

Answer:

[tex]21.5[/tex]

Step-by-step explanation:

First you have to simplify 7 - 4 to 3.

[tex]43 \div 4\times 2[/tex]

Then Simplify 43 ÷ 4 to 10.75.

[tex]10.75 \times 2[/tex]

And lastly, Simplify.

[tex]21.5[/tex]

Therefor, the answer is, 21.5.

If a cylinder with height 9 inches and radius rr is filled with water, it can fill a certain pitcher. How many of these pitchers can a cylinder with height 9 inches and radius 3r3r fill?

Answers

Answer:

9 pitchers

Step-by-step explanation:

Given

Cylinder 1:

[tex]Radius = r[/tex]

[tex]Height = 9[/tex]

Cylinder 2:

[tex]Radius = 3r[/tex]

[tex]Height = 9[/tex]

Required

How many pitchers' cylinder 2 can fill

First, we calculate the volume of both cylinders

Volume is calculated as:

[tex]Volume = \pi r^2h[/tex]

For A:

[tex]V_A = \pi r^2*9[/tex]

[tex]V_A = 9\pi r^2[/tex]

For B:

[tex]V_B = \pi (3r)^2 * 9[/tex]

[tex]V_B = \pi *9r^2 * 9[/tex]

[tex]V_B = 9* 9\pi r^2[/tex]

In (a): [tex]V_A = 9\pi r^2[/tex]

So, we have ve:

[tex]V_B = 9*V_A[/tex]

[tex]V_B = 9V_A[/tex]

If the first cylinder can fill 1, then the second can fill 9 pitchers

5m - 4z + 8m + 3 – 2z

Answers

Answer:

13m-6z+3

Step-by-step explanation:

5m-4z+8m+3-2z

5m+8m-4z-2z+3

13m-6z+3

Tammy only has $550 of debt left. If Tammy were to pay off her debt completely today, how could you represent Tammy's situation as an equation? Who ever actually helps get brainliest.​

Answers

Answer:

Step-by-step explanation:

If Tammy has $550 in debt, and she pays it off in one day, then the equation to represent her situation would look like this.

$550 - $550 = $0

Hope this helps!

Answer:If I let +t+=+0+ ( no months have passed )

+D%280%29+=+550+

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

+t+=+1+

+D%281%29+=+550+-+.19%2A550+

+D%281%29+=+550%2A%28+1+-+.19+%29+

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

+t+=+2+

+D%282%29+=+550%2A%28+1+-+.19+%29+-+.19%2A%28+550%2A%28+1+-+.19+%29+%29+

+D%282%29+=+550%2A%28+1+-+.19+%29%2A%28+1+-+.19+%29+

+D%282%29+=+550%2A%28+1+-+.19+%29%5E2+

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

This pattern continues, so the general formula is:

+D%28t%29+=+550%2A%28+1+-+.19+%29%5Et+

+D%28t%29+=+550%2A.81%5Et+

I hope you see this. Each month 19% of the

PREVIOUS months balance gets subtracted.

Step-by-step explanation:

It takes 213 yards of denim to make one pair of jeans. How many yards would it take to make 5 pairs of jeans?

Answers

Answer:

1,065

Step-by-step explanation:

Multiply 213 by 5 to get your final answer.

Other Questions
light of wavelength 79 nmnm ionizes a hydrogen atom that was originally in its ground state. what is the kinetic energy of the ejected electron? If an unlicensed person does act as a real estate salesperson or broker, he or she will beguilty of fraud.penalized under the law.required to compensate the injured party.fined $1,000 use any test to determine whether the series is absolutely convergent, conditionally convergent, or divergent. [infinity] (1)n arctan(n) n9 n = 1 write a snippet of code in c to both declare and initialize a dynamic array consisting of n integer values using a single line of code. A movie theater kept attendance on Fridays and Saturdays. The results are shown in the box plots. What conclusion can be drawn from the box plots?A. The attendance on Friday has a greater interquartile range than attendance on Saturday, but both data sets have the same median. B. The attendance on Friday has a greater median and a greater interquartile range than attendance on Saturday. C. The attendance on Friday has a greater median than attendance on Saturday, but both data sets have the same interquartile range. D. The attendance on Friday and the attendance on Saturday have the same median and interquartile range A writer preparing an electrician's manual is considering inserting company-designed danger symbols to denote the potential for electrocution. In deciding whether to do so, what should the writer's primary concern be?A) codes of conduct. B) liability law. C) copyright law. D) whistle-blowing At 10C, the gas in a cylinder has a volume of 0.250 L. The gas is allowed to expand to 0.285 L.What must the final temperature be for the pressure to remain constant? (Hint C + 273 = K.)323 K248 K282 K284 K The carbon nucleus has atomic number A =13. calculate the radius, mass and volume of the nucleus? _______________ is the uncompiled program statements that can be viewed and edited. if a particular species of vine required sunlight and a moderate level of temperature and humidity to survive, in which forest layer would it most likely be found? Which period 3 element has successive first through seventh ionization energies (kJ/mol) : Ei1 = 578; Ei2 = 1,817; Ei3 = 2,745; Ei4 = 11,575; Ei5 = 14,830; Ei6 = 18,376; and Ei7 = 23,293? A) Mg B) Cl C) S D) Al Decide whether each of the following strategies is likely to be effective in limiting cholera disease symptoms. Strategies (6 items) (Drag and drop into the appropriate area below) No more items Potential effectiveness Likely Would Limit Likely Would NOT Limit blocking ganglioside GM1 on respiratory epithelium blocking type III secretion in Vibrio cholera enhancing CAMP levels within cells blocking type IV secretion in Vibrio cholera blocking type II secretion in Vibrio cholera blocking ganglioside GM1 on intestinal cell membranes 2. What should you always have in the conclusion to your research report?more evidenceO an example to introduce your claimO questions that your report answeredO a summary of your claim and main points a statement of personnel policies is a written policy statement covering employer/employee relations. true false 2. what will happen if the sebaceous glands slow their function refer to p&t inc. during which step of the personal selling process should a p&t salesperson ask the prospect to buy the product? find a second-degree polynomial p such that p(1) = 2, p'(1) = 2, and p''(1) = 4. . at rest, what is the relative contribution of the sympathetic and parasympathetic nervous system to the regulation of homeostasis? in what way did sumer differ from societies that came before it? prejudice and discrimination form a vicious circle. why is this the case?