The sum of twice an angle and it’s supplement is 253. Find the angle

Answers

Answer 1

The required measure of an angle is 73 degrees which supplement is 253.

What are supplementary angles?

The supplementary angles are defined as when pairing of angles addition to 180° then they are called supplementary angles.

The supplement of an angle is equal to 180 degrees minus the angle.

So if we call the angle "x", we can set up an equation as follows:

2x + (180 - x) = 253

Simplifying the equation:

x = 253 - 180

Apply the subtraction operation, and we get

x = 73

So the angle is 73 degrees.

Learn more about supplementary angles here:

brainly.com/question/3027144

#SPJ1


Related Questions

write a (constant) function nats :: [integer] which produces an infinite list of all the natural numbers starting at 0. it is ok for this function if you do not use recursion.

Answers

A constant function is a function that returns the same output every time it is called, regardless of the input. In this case, we want to create a constant function that returns an infinite list of all the natural numbers starting at 0.

Here's an example of how you could implement the nats function in Haskell:

makefile

Copy code

nats :: [Integer]

nats = [0..]

The [0..] syntax creates an infinite list that starts with 0 and continues indefinitely. Every time the nats function is called, it returns this same infinite list, so it's considered a constant function.

Another way to write the nats function is to use the iterate function, which generates a list by repeatedly applying a function to an initial value.

makefile

Copy code

nats :: [Integer]

nats = iterate (+1) 0

In this case, iterate (+1) 0 generates a list by repeatedly adding 1 to 0. The first element of the list is 0, the second element is 0 + 1 = 1, the third element is 1 + 1 = 2, and so on. This generates an infinite list of all the natural numbers starting at 0, which is exactly what we want.

In either case, you can take any number of elements from the nats list by using the take function. For example, take 5 nats would return the first 5 elements of the nats list, which would be [0, 1, 2, 3, 4].

Here you can learn more about constant function

https://brainly.com/question/19595873#

#SPJ11

in this situation is it possible that lim x → 1 f(x) exists? explain.

Answers

Yes, in this situation is it possible that lim x → 1 f(x) exists.

A horizontal/vertical oblique line that approaches 0 but never reaches it is known as an asymptote. Its distance from the graph of the function keeps becoming smaller.

What's the vertical asymptote rule?

Vertical asymptotes happen when a factor from a rational expression's denominator does not cancel out with a factor from the numerator.

                        The existence of a vertical asymptote occurs when a factor does not cancel, as opposed to creating a hole at that number. Using a dotted vertical line, the vertical asymptote is shown.

if f(x) has a vertical asymptote at x = 1,

it can be defined such that lim x→1− f(x) = 6,

lim x→1+ f(x) = 3,

and lim x→1 f(x) exists.

Learn more about Vertical asymptotes

brainly.com/question/4084552

#SPJ4

I donut shop sold 40 donuts of which 15% of the donuts were jelly and 35% of the donuts were glazed using products,to find:


(A) The number of donuts that were jelly


(B) The number of donuts that were glazed

Answers

(A) The number of doughnuts that were jelly = 6

(B) The number of doughnuts that were glazed = 14

As per the data given in the question,

We have,

Total number of doughnuts sold = 40

Percentage of jelly doughnuts = 15%

Percentage of doughnuts that's were glazed = 35%

A) The number of doughnuts that were jelly can be found by multiplying the total number of doughnuts by the percentage that was jelly:

40 x 15% = 6 donuts

So there were 6 doughnuts that were jelly.

B) The number of doughnuts that were glazed can be found by multiplying the total number of doughnuts by the percentage that was glazed:

40 x 35% = 14 donuts

So there were 14 doughnuts that were glazed.

For more questions on Percentage

https://brainly.com/question/843074

#SPJ4

- 2/3 y - 3/5 X + 2/9 - 4/5 y + 1/3 X

Answers

-12X -- 66y + 10
_____________
           45

2/3 y - 3/5 X + 2/9 - 4/5 y + 1/3 X
= (-2/3 + 4/5) y + (1/3 - 3/5) X + 2/9
= 2/15 y - 2/15 X + 2/9
= 2/9 + 2/15 (y - X).

On what interval is the parametric curve defined by x(t) = e^{-t} and y(t) = cos(t) for 0 ≤ t≤ π concave down?
A. (0, 3π/4)
B. (3π/4, π)
C. (0, π)
D. (0, π/2)

Answers

The parametric curve defined by x(t) = e^{-t} and y(t) = cos(t) for 0 ≤ t≤ π  is concave down in the interval (c) (0, π) .

The Concavity of a parametric curve is determined by the second derivative of the curve.

To find the second derivative of a parametric curve, we need to differentiate each component of the curve with respect to the parameter t, then differentiate those expressions with respect to t again.

For x(t) = e^{-t} and y(t) = cos(t),

the first derivative w.r.t "t" is x'(t) = -e^{-t} and y'(t) = -Sin(t) ;

the second derivative with respect to t of x''(t) = e^{-t} and  y''(t) = -Cos(t),

Since , y''(t) = -Cos(t) is negative over the interval (0, π), we can conclude that the curve is concave down over that interval.

Therefore, the curve is concave down over that interval (0, π).

Learn more about Parametric Curve here

https://brainly.com/question/15585522

#SPJ4

Find (f-g) (x)

(image attached)

Answers

The function (f - g)(x) is given as follows:

C. (f - g)(x) = |7x + 1| - 6.

How to obtain the subtraction function?

The functions for this problem are defined as follows:

f(x) = |7x + 1| - 8.g(x) = -2.

To obtain the subtraction of f(x) by g(x), we merely subtract the definitions, as follows:

(f - g)(x) = f(x) - g(x).

Hence:

(f - g)(x) = |7x + 1| - 8 - (-2)

(f - g)(x) = |7x + 1| - 8 + 2.

The like terms in the expression are given as follows:

-8 + 2 = -6.

Hence the subtraction function for this problem is defined as follows:

(f - g)(x) = |7x + 1| - 6.

Meaning that option C is the correct option.

More can be learned about functions at https://brainly.com/question/24808124

#SPJ1

A bicycle wheel has a diameter of 26 inches. What is the circumference?

Note: Use 3. 14 for pi (Tt) rather than the pi (Tt) key on a calculator,

*

Answers

The bicycle that has a diameter of 26 inches has a circumference of 81.64 inches

What is perimeter?

The perimeter is the total length of the edge of a geometric figure.

To solve this geometry exercise the equation and procedure we will use is:

P = 2*pi*r

Where:

pi = constantr = radiusP = Length of a circle

Information about the problem:

pi = 3.14d = 26 inchesP = ?

Applying the perimeter equation of a circumference, we have:

P = 2*pi*r

P = 2*3.14*(26 inches/2)

P = 3.14*26 inches

P = 81.64 inches

Learn more about perimeter at brainly.com/question/397857

#SPJ4

Find the slope of this graph. Please help!! Will give brainliest!! :)

Answers

The slope of this graph is equal to 8/50 or 0.16.

How to calculate the slope of a line?

In Mathematics, the slope of any straight line can be determined by using this mathematical equation;

Slope (m) = (Change in y-axis, Δy)/(Change in x-axis, Δx)

Slope (m) = (y₂ - y₁)/(x₂ - x₁)

Based on the information provided, we can logically deduce the following slope and data points on the line:

Points on x-axis = (0, 150).Points on y-axis = (5.00, 29.00).

Substituting the given points into the slope formula, we have the following;

Slope, m = (y₂ - y₁)/(x₂ - x₁)

Slope, m = (29.00 - 5.00)/(150 - 0)

Slope, m = 24/150

Slope, m = 8/50 or 0.16.

Read more on slope here: brainly.com/question/3493733

#SPJ1

Hi guys, really struggling with this question! any help would be greatly appreciated :)

Answers

Using the concept of PEDMAS, the simplified expression is equal to 12

What is Simplification of Expression

Simplification of an algebraic expression involves transforming a given expression into a simpler equivalent expression while maintaining the same value. This can be done by combining like terms, applying the distributive property, using the properties of arithmetic operations, and combining constants. The goal is to write the expression in the most compact and understandable form.

In the question given, the expression is;

27^(1/3) * 16^(3/4) ÷ 8^(1/4) ÷ 2^(1/4)

simplifying the expression;

3 * 8 ÷ 4√8 ÷ 4√2

Applying the principle of PEDMAS here;

3 * 8 ÷ 4√8 ÷ 4√2 = 12

Learn more on simplification of expression here;

https://brainly.com/question/28036586

#SPJ1

The simplification of the given expression would be=225½

What is simplification of equations?

The simplification of equations involves the replacement of ambiguous values with a simple value through the used of the various arithmetic operations.

(27⅓ × 16¾) ÷ (8¼ ÷ 16¾)

The about equations in the bracket are solved differently by changing the mixed fraction to a simple fraction:

= (27⅓ × 16¾)

= 82/3 × 67/4

The second bracket;

= (8¼ ÷ 16¾)

= 33/4 ÷ 67/4

= 4/33 × 67/4

Solving the both bracket through the following:

82/3 × 67/4 ÷ 4/33 × 67/4

The fraction 67/4 will cancel out each other;

= 82/3 ÷ 4/33

= 82/3 × 33/2

= 41×11/2

= 451/2

= 2251/2

Learn more about division here:

https://brainly.com/question/25289437

#SPJ1

Malian bought a laptop with a 10% discount. She also bought a mouse for 13.99 and spent 621.49 before tax. Write an equation to find the original cost of the laptop.

Answers

Answer:

(621.49 x  0.1) + 13.99 = x

Step-by-step explanation:

I hope this helps

A tower stands on top of a hill. From a point on the ground that is 148 meters directly east of a point directly under the tower, the angle of elevation to the bottom of the tower is 18 degrees. From the same point, the angle of elevation to the top of the tower is 34 degrees. Find the height of the tower.

Answers

Answer:

62.2 m

Step-by-step explanation:

From 148m away at ground level, the angel of elevation to the tower base is 18 degrees. Imagining this as a right angled triangle, if considering the angle of 18 degrees, 148m is the adjacent and the opposite is the height of the hill:

tanA=opposite/adjacent

tan18=opposite/148

opposite = 57.8357059295m

From 148m away at ground level, the angel of elevation to the tower top is 34 degrees. Imagining this as a right angled triangle, if considering the angle of 34 degrees, 148m is the adjacent and the opposite is the height of the hill+the tower:

tanA=opposite/adjacent

tan34=opposite/148

opposite = 120.062515998m

Knowing the height of the hill and tower is 120.062515998m and the height of the hill is 57.8357059295m, we can say the height of the tower is the difference:

120.062515998 - 57.8357059295 = 62.2268100685 m

Please help I need to do this before I’m late lol

Answers

the answer which equal to the 1 1/4 are 8 3/4 - 7 1/2 and 9 5/12 - 8 1/6.

What is a fraction?

If the numerator is bigger, it is referred to as an improper fraction and can also be expressed as a mixed number, which is a whole-number quotient with a proper-fraction remainder.

Any fraction can be expressed in decimal form by dividing it by its denominator. One or more digits may continue to repeat indefinitely or the result may come to a stop at some point.

a) 5 2/8 - 4 1/4 = 42/8 - 17/4 = 42-34/8 = 8/8 =1

b) 8 3/4 - 7 1/2 = 35/4 - 15/2 = 35-30/4 = 1 1/4

c) 2 1/8 - 1 7/8 = 17/8 - 15/8 = 2/8

d) 9 5/12 - 8 1/6 = 113 - 98/ 12 = 15/12 = 1 3/12 =1 1/4

So the answer which equal the 1 1/4 is 8 3/4 - 7 1/2 and 9 5/12 - 8 1/6.

Learn more about  Fraction, by the following link.

https://brainly.com/question/17220365

#SPJ1

jessie is selling bows at the local craft fair. She charges $3 for a small bow and $5 for a large bow. At the end of the day, Jessie had sold a total of 18 bows, and made $70. How many of each size bow did jessie sell

Answers

Answer:

10 small bows; 8 large bows

Step-by-step explanation:

Let x = number of small bows.

Let y = number of large bows.

x + y = 18;

3x + 5y = 70

      -3x - 3y = -54

  +   3x + 5y = 70

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

               2y = 16

y = 8

x + y = 18

x + 8 = 18

x = 10

Answer: 10 small bows; 8 large bows

POINTS UP FOR GRABS!!!

Answers

The compound inequality for the graph shown above include the following:

x < -4.

x ≤ 5.

What is a number line?

In Mathematics, a number line is a type of graph with a graduated straight line which comprises both positive and negative numerical values that are placed at equal intervals along its length.

Since the first point is at -4 and the arrow points to the left of the number line, it represents the less than (<) inequality symbol and should be written as x < -2.

Additionally, the second point is located at 5 and the arrow points to the left of the number line with a shaded circle, it represents the greater than (>) inequality symbol and should be written as x ≤ 5.

Read more on number line here: brainly.com/question/16482555

#SPJ1

Please help!!!!!!!!!,

Answers

Answer: 6

Step-by-step explanation:

Answer: 16 for number 1 and 15 for number 2

Step-by-step explanation: 24 divided by 8 is 3 meaning we have to multiply 8 by 2 to get the upper part if the fraction 2 times 8 is 16

24 divided by 8 is 3 so we multiply 5 by 3 to get 15

Can someone please help me with this?

A: 28 degrees

B: 46 degrees

C: 17 degrees

D: 118 degrees

Answers

Answer:

A 28°

Step-by-step explanation:

we see that the sum of angle 1 and 62° must be 90° (right angle).

90 = 62 + angle 1

28° = angle 1

The answer is A: 28 degrees

Scientists are preparing two satellites to be launched. The satellite, Space Explorer B, flies 43000 miles in 5 hours. The graph below represents the number of miles, y, that the satellite, Space Explorer A, flies in x hours.

Answers

Space Explorer B travels 8600 miles per hour 4800 miles per hour Space Explorer A.

How to compare Explorer A and Explorer B?

The slope, also known as gradient, in mathematics is a measure of the steepness of a line. It is defined as the ratio of the vertical change (rise) to the horizontal change (run) between any two points on the line.

Space Explorer B, flies 43000 miles in 5 hours. The speed will  be:

speed = 43000/5 = 8600 miles per hour

For Space Explorer A, we can find the speed from the slope of the graph. That is:

Speed = (38000-19000)/(10-5) = 19000/5 = 3800 miles per hour

Speed difference = 8600 - 3800 = 4800 miles per hour

Learn more about slope on:

brainly.com/question/3493733

#SPJ1

Given: AB is parallel to DC and E is the midpoint of AC.
Prove: ▲ABE ≅ ▲CDE

Answers

Therefore, the AAA test of congruency demonstrated that ABE is Congruence to CDE.

Congruent Definition Example

Something that is "exactly equal" in terms of size and shape is referred to as congruent. No matter which way we spin, flip, or rotate the shapes, they remain accurate. For instance, you may draw two circles with the same radius, cut them out, and stack them.

In this case, we are aware that AB ll DC - GIVEN

In light of the characteristic of parallel lines,

Let's recall the property of parallel lines:-

"When the pair of alternating angles equals one another, two straight lines become parallel."

Alternate angles are angle ABE and angle CDB.

angle BAE ≅ angle DCE -{alternate angles}

E is a midway, given that.

According to the midpoint theorem, opposite angles are congruent when angle AES and angle CED are compared.

Here, we may see the congruency test from AAA.

Hence its proved that ∆ABE ≅ ∆CDE by AAA test of congruency.

To know more about Congruence visit:-

https://brainly.com/question/7888063

#SPJ1

Determine the sum of the solutions to: 5x^2-16x+3=0
A. 3/5
B. 16
C. 8
D. 16/5

Answers

The sum of the two solutions is equal to 17/5.

How to find the solutions of the quadratic equation?

Here we want to solve the quadratic equation:

5x^2 - 16x + 3 = 0

Using the quadratric formula, we will get the solutions:

[tex]x = \frac{16 \pm \sqrt{(-16)^2 - 4*3*5} }{2*5} \\\\x = \frac{16 \pm14 }{10}[/tex]

Then the two solutions of the quadratic equation are:

x = (16 + 14)/10 = 30/10 = 3

x = (16 - 14)/10 = 2/10 = 2/5

The sum is: 3 + 2/5 = 3 + 2/5 = 15/5 + 2/5 = 17/5

Learn more about quadratic equations at:

https://brainly.com/question/1214333

#SPJ1

is 40% bigger than 1/4

Answers

Answer:

40% is bigger

Step-by-step explanation:

40% ⇒ 40/100

1/4 ⇒ 25/100

40>25

∴ 40% is bigger

Yes
4/10>1/4
Convert so same denominator
8/20>5/20

So it is bigger

For what values of k does the Intermediate Value Theorem tell us that there is a c in the interval [0,1] such that f(c) = k? ? ?

Answers

The Intermediate Value Theorem tell us that there is a c in the interval [0,1] such that f(c) = k is lies between f(0) and f(1).

The Intermediate Value Theorem is a fundamental concept in calculus that states that given a continuous function f and two real numbers a and b, if k is a real number between f(a) and f(b), then there exists a real number c in the interval [a, b] such that f(c) = k.

In the specific case of [0,1], the Intermediate Value Theorem tells us that if k is a real number between f(0) and f(1), then there exists a real number c in the interval [0,1] such that f(c) = k. This means that for any value of k that falls between the values of the function at 0 and 1, there is a point in the interval [0,1] where the function takes on that value.

So, for what values of k does the Intermediate Value Theorem tell us that there is a c in the interval [0,1] such that f(c) = k? The Intermediate Value Theorem tells us that there is a c in the interval [0,1] such that f(c) = k for any real number k that falls between the values of f(0) and f(1).

To know more about intermediate value theorem here.

https://brainly.com/question/29712240

#SPJ4

what are the roots of 2x^4-26x^2-28

Answers

Answer: To find the roots of a polynomial equation, we can use various methods, such as factoring, synthetic division, or the quadratic formula. One common method to find the roots of a quartic polynomial (degree 4) is to use the factor theorem, which states that if a polynomial equation has a root "r", then "r" is a factor of the polynomial.

In this case, we can factor 2x^4-26x^2-28 as:

2x^4 - 26x^2 - 28 = 2(x^2 - 7)(x^2 + 4)

So, the roots of 2x^4-26x^2-28 are x = ±√7 and x = ±i√2.

These are the solutions to the equation 2x^4-26x^2-28 = 0.

Step-by-step explanation:

Which learning preference category best describes a High School Fine Arts student who prefers a studio lesson that involves modeling with clay over a virtual field trip to the Louvre? Question 1 options: auditory learner kinesthetic learner visual learner

Answers

The learning preference category that best describes a high school fine arts student who prefers a studio lesson that involves modeling with clay over a virtual field trip to the Louvre is a kinesthetic learner.

Kinesthetic learners are individuals who learn best through hands-on, physical experiences and activities. They tend to be active and enjoy engaging their bodies in learning, such as manipulating objects or performing movements. For this student, modeling with clay provides a hands-on, physical experience that allows them to learn through touch and movement. They can feel the texture and weight of the clay, and manipulate it to create their desired form. This type of learning experience is much more engaging and effective for a kinesthetic learner compared to a virtual field trip to the Louvre, which is primarily a visual learning experience.

In conclusion, a kinesthetic learning preference involves hands-on, physical activities and experiences, and this preference is evident in the student's preference for a studio lesson that involves modeling with clay over a virtual field trip to the Louvre.

Learn more about kinesthetic :

https://brainly.com/question/844761

#SPJ4

NEED HELP ASAP

REFER TO PHOTO


IS IT LINEAR ? EXPLAIN WHY OR WHY NOT

Answers

Yes it's linear because the rate of change between x and y remain the same. Every increase of 5 in x results in a decrease of 4 in y, as example from x0 to x5, y goes from 18 to 14, from x5 to 10, y goes from 14 to 10. They decide to double the jump and go from x10 to x20, but as proof of it being linear, y also double the amount it decreases going from 4 to 8.

Elliot make and ell key chain. Hi profit depend on what price he charge for a key chain. He write the expreion (x−10)(60−3x) to repreent hi profit baed on the price per key chain, x

Answers

The expression (x - 10)(60 - 3x) represents Elliot's profit based on the price per key chain, where x is the price in dollars that Elliot charges for each key chain.

The expression can be interpreted as follows:

x - 10 represents the revenue Elliot makes from each key chain, as it's equal to the price per key chain minus the cost of materials for each key chain.

60 - 3x represents the number of key chains Elliot can make and sell, as it's equal to the maximum amount of money Elliot has minus the total cost of materials for all key chains.

So, (x - 10)(60 - 3x) represents Elliot's total profit, which is equal to the revenue from each key chain multiplied by the number of key chains Elliot can make and sell.

In other words, Elliot's profit is proportional to both the price he charges per key chain and the number of key chains he can sell at that price. The expression captures this relationship and can be used to determine Elliot's profit for different prices.

To learn more about Profits

Visit; brainly.com/question/15190155

#SPJ4

The expression (x - 10)(60 - 3x) represents Elliot's profit based on the price per key chain, where x is the price in dollars that Elliot charges for each key chain.

The expression can be interpreted as follows:

x - 10 represents the revenue Elliot makes from each key chain, as it's equal to the price per key chain minus the cost of materials for each key chain.

60 - 3x represents the number of key chains Elliot can make and sell, as it's equal to the maximum amount of money Elliot has minus the total cost of materials for all key chains.

So, (x - 10)(60 - 3x) represents Elliot's total profit, which is equal to the revenue from each key chain multiplied by the number of key chains Elliot can make and sell.

In other words, Elliot's profit is proportional to both the price he charges per key chain and the number of key chains he can sell at that price. The expression captures this relationship and can be used to determine Elliot's profit for different prices.

To learn more about Profits Visit;

brainly.com/question/15190155

#SPJ4

comparing data collected on individuals' sales and individuals' attendance records would be an example of what type of data analysis? group of answer choices quantitative qualitative standard deviation concept

Answers

The answer is Quantitative because quantitative data mainly deals with the statistic and figures.

As given, Comparing data collected on individuals’ sales and individuals’ attendance records would be an example of what type of data analysis?

Quantitative data analysis involves the use of numerical data to discover patterns and relationships. In the example of comparing individuals' sales and attendance records, the data collected would be numerical and would be analyzed to determine the relationship between sales and attendance. This type of analysis often involves statistical techniques such as regression analysis, correlation analysis, and hypothesis testing. The goal is to gain insights and make informed decisions based on the numerical data, rather than just describing or summarizing it.

Answer is Quantitative.

Reason- Quantitative data mainly deals with the statistic and figures.

Thus, the answer is Quantitative because quantitative data mainly deals with the statistic and figures.

To learn more about quantitative data analysis visit : brainly.com/question/14365405

#SPJ4

The answer is Quantitative because quantitative data mainly deals with statistic and figures.

As given, Comparing data collected on individuals’ sales and individuals’ attendance records would be an example of what type of data analysis?

Quantitative data analysis involves the use of numerical data to discover patterns and relationships. In the example of comparing individuals' sales and attendance records, the data collected would be numerical and would be analyzed to determine the relationship between sales and attendance. This type of analysis often involves statistical techniques such as regression analysis, correlation analysis, and hypothesis testing. The goal is to gain insights and make informed decisions based on the numerical data, rather than just describing or summarizing it.

Answer is Quantitative.

Reason- Quantitative data mainly deals with statistic and figures.

Thus, the answer is Quantitative because quantitative data mainly deals with statistic and figures.

To learn more about quantitative data analysis visit : brainly.com/question/14365405

#SPJ4

Charlotte works in a department store selling clothing. She makes a guaranteed salary of $500 per week, but is paid a commission on top of her base salary equal to 30% of her total sales for the week. How much would Charlotte make in a week in which she made $1575 in sales? How much would Charlotte make in a week if she made
x
x dollars in sales?

Answers

Charlotte makes 500 pounds per week

30 % of 500 she has to pay to the commission per week

if she made 1575 one week how much would she get?

1575 divided by 30%=472.5

472.5 rounded = 473

x=473 or 472.5

Charlotte would make $972.50 in a week in which she made $1575 in sales and  if Charlotte made x dollars in sales, she would make $500 + 0.3x in total earnings for the week.

What is Percentage?

percentage, a relative value indicating hundredth parts of any quantity.

To calculate how much Charlotte would make in a week in which she made $1575 in sales

we first need to calculate her commission:

Commission = 30% × $1575

= $472.50

Total earnings = Guaranteed salary + Commission

= $500 + $472.50

= $972.50

Therefore, Charlotte would make $972.50 in a week in which she made $1575 in sales.

To calculate how much Charlotte would make in a week if she made x dollars in sales, we can use the same method.

Her commission would be:

Commission = 30% ×x

And her total earnings would be:

Total earnings = Guaranteed salary + Commission

= $500 + 0.3x

So, if Charlotte made x dollars in sales, she would make $500 + 0.3x in total earnings for the week.

To learn more on Percentage click:

https://brainly.com/question/24159063

#SPJ2

The bearing of two positions A and B are 035° and 175° respectively, if /OA/= 30m and /OB/=5m , find /AB/​

Answers

The length of the side AB, /AB/ as determined using the cosine rule is  30.8 m

What is the length of the side AB, /AB/?

The length of the side AB, /AB/ is given below using the cosine rule:

c² = a² + b² - 2 * a* b * cosC

where;

c is the unknown side AB

C = (175°  - 035°)

C = 145°

a = 5 m

b = 30 m

c² = 5² + 30² - 2 * 5 * 30 * cos 145°

c = √( 5² + 30² - 2 * 5 * 30 * cos 145°)

c = 30.8 m

Learn more about the cosine rule at: https://brainly.com/question/4372174

#SPJ1

students at city middle school rent a popcorn machine for a school event.the event will last 8 hours.two companies rent popcorn machines. company A charges $14 pr delivery fee and $8 per hour. company B uses the cost function:C(x)=10x + 10.which is the better value

Answers

The company that has a better value is: company A.

What is the slope-intercept form?

In Mathematics, the slope-intercept form of a line can be calculated by using this linear equation:

y = mx + c

Where:

x represents the number of hours.y represents the total fee.m represents the slope of a line.c represents the y-intercept of a line.

Since the total fee that is being charged by company A is denoted by C(x) and it charges $14 per delivery fee and $8 per hour, an equation that models this situation is given by;

C(x) = 8x + 14

When hours, x = 8 hours, the total fee is given by:

C(8) = 8(8) + 14

C(8) = $78.

For company B, the total fee is given by:

C(x) = 10x + 10

C(8) = 10(8) + 10

C(8) = $90.

Read more on slope here: brainly.com/question/20354825

#SPJ1

How to Use the X-Intercept Calculator?

Answers

Press second, then CALC (above the TRACE key). Select option 2: 0You'll be required to enter an x-intercept guess, a left bound, and a right bound into the calculator.

What is the X-Intercept Calculator Used For? Press second, then CALC (above the TRACE key). Select option 2: 0You'll be required to enter an x-intercept guess, a left bound, and a right bound into the calculator.By dragging the cursor to the correct x-value with your left and right arrows, then pressing ENTER, you can enter them.When y = 0, we solve the equation for x to determine the x-intercept.The line crosses the x-axis at y=0, explaining this.If an equation isn't in the y = mx + b form, we can still find the intercepts by substituting 0 where necessary and solving for the remaining variable.With x = 0, solve for y to determine the y-intercept.

To learn more about X-Intercept Calculator refer

https://brainly.com/question/26838456

#SPJ4

Other Questions
two linear equations in two variables have no solution. the equations are An acute triangle has sides measuring 10 cm and 16 cm. The length of the third side is unknown. Which best describes the range of possible values for the third side of the triangle?x < 12. 5, x > 18. 912. 5 < x < 18. 9x < 6, x > 266 < x < 26. What did the Antifederalists argue that the powers of government should be limited by? a particle undergoes simple harmonic motion. the graph shows the variation of velocity v of the particle with time t. what is the variation with the time of the acceleration a of the particle what type of business organization is is antique paper goods Write an expression to represent "the sum of four and the product of 16 and a number x." (no parentheses in answer please) when an owner invests cash in a business, the owners capital account is Write an equivalent fraction for each given fraction 10/2 please help!! The passage of legislation to end these practices resulted in- In conifers, male gametophytes are called _______and are formed by the division of microspores. if you invest $100 at a stated annual rate of 10 percent compounded quarterly, how much more money will you have in 10 years than if the rate was compounded annually? multiple choice question. $3.43 $9.13 $7.56 $5.71 a linear programming problem consists of [ select ] to be [ select ] subject to certain constraints in the form of True or False, the standard deviation is the positive square root of the variance. usan and Mark are standing at different places on a beach and watching a bird. The angles of elevation they make are 20 and 50, respectively.If Susan and Mark are 7 kilometers apart and the bird is between them, the bird is at a height of kilometers from the ground. an organizational procurement and supply management process used to locate, develop, qualify, and employ suppliers that add maximum value to the buyers products or services. the most important decision that affects policy-making (and least noticed) is the decision to using the guidelines in the communicating across diversity section which specifics advice would you give to sundown managemnt team about how to communicate most effectively in the the face of the company growth?the subject is communication- its on sundown bakery- strategic case what steps should you take to discover, in the most accurate and efficient manner, the reasons customers are filing complaints? what is the distinction between mediation and arbitration? should dunder mifflin's sales contracts include a clause that requires the parties to attempt resolution of the dispute by mediation? by arbitration? by some other mechanisms? if dunder mifflin's sales contracts did include a dispute resolution (other than litigation) clause, when can the courts still be used? believing that employees should be promoted solely on the basis of merit, that no bribes will be paid to foreign officials to obtain business licenses, and that companies should offer extended maternity leave upon the employee's request are examples of Which of the following statements are true in steady state (mark all that apply)?No heat is transferred from the system to the surrounding.Entropy can be produced.The pressure can change with position.The pressure can change with time.The local concentration does not change with time.The system is in equilibrium.