Angle A is 12x - 37 and angle B is 7x + 15. If these angles are vertical, what is the value of x?
x=?

CAN ANYONE HELP ME PLEASEEEE????????????????????????//

Answers

Answer 1

Answer:

x = -439

Step-by-step explanation:

Oh, ok this one will take a while for me to type ;) breath in and breath out!

Ok so watch my steps:

1. 12\(x\) - 37

multiply #1 by 7

1. 84x - 259

now multiply #2 by 12 and line 'em up

2. 84\(x\) + 180

1.  84x - 259 ( -

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

        x + 439 = 0

             x       = 0 -439

                   x = -439


Related Questions

urgent answer needed pls​

urgent answer needed pls

Answers

Answer:

25.

SEE THE IMAGE FOR SOLUTION

urgent answer needed pls

Use integration by substitution to find the integral ∫ 8x/(1−x²)⁴ dx
Given the following partial fraction decomposition:
6x+13 / x²+5x+6 = A/(x+a) + B/(x+b) as a>b
Find: i. a and b using factorization; (3 marks) ii. A and B using the partial fraction decomposition; and (5 marks) iii. the integral of ∫6x+13 / x²+5x+6 dx

Answers

The remainder when h(x) is divided by (x+1) is 69.

We have:

h(-1) = 2(-1)^4 - 17(-1)^3 + 30(-1)^2 + 64(-1) + 10 + 69 = 54

To evaluate the polynomial h(x) at x=-1 using the remainder theorem, we need to find the remainder when h(x) is divided by (x+1).

We can use polynomial long division or synthetic division to perform this division. Here's the polynomial long division:

          2x^3 - 19x^2 + 49x - 59

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

x + 1 | 2x^4 - 17x^3 + 30x^2 + 64x + 10

   - (2x^4 + 2x^3)

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

           -19x^3 + 30x^2

           + (-19x^3 - 19x^2)

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

                       49x^2 + 64x

                       + (49x^2 + 49x)

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

                                   -59x + 10

                                   - (-59x - 59)

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

                                                69

Therefore, the remainder when h(x) is divided by (x+1) is 69.

Hence, we have:

h(-1) = 2(-1)^4 - 17(-1)^3 + 30(-1)^2 + 64(-1) + 10 + 69 = 54

Learn more about remainder here:

https://brainly.com/question/29007655

#SPJ11

Marco's mom has sent him to the store to buy apples and oranges. She has given Marco
instructions to buy 4 pounds of apples and as many pounds of oranges as possible. He
also has to spend exactly $9.11. If one pound of apples costs $1.29 and one pound of
oranges costs $0.79, how many pounds of oranges will Marco be able to buy?

Answers

Answer: 5 pounds

Step-by-step explanation:

I believe it’s 9 because- 9.11 minus 1.29 is 7.82. Multiply .79 by 9 and you get 7.11 and 9 is the closest you’ll get because .79 by 10 is 7.90 so The answer is 9

what is the mass of x divided by 12

Answers

The value of expression is,

⇒ x ÷ 12

We have to given that;

The algebraic expression is,

⇒ x divided by 12

Hence, We can formulate;

The value of correct expression is,

⇒ x ÷ 12

⇒ x / 12

Thus, The value of expression is,

⇒ x ÷ 12

Learn more about the mathematical expression visit:

brainly.com/question/1859113

#SPJ1

what is the answer?
x+y=15
-2x+5y=-2​

Answers

multiply the first equation by 2

2x + 2y =30

now we’ll add the second equation to the first equation

2x + 2y =30
-2x+5y= -2

7y=28

divide by 7

y=4

now plug y back into the first equation

x + 4 = 15

subtract 4

x=11

The cheyenne corp purchased $7480 worth if laundry supplies on june 2 and recorded the purchase as an asset. On june 20, an inventory of the laundry supplies inecaticated only $1320 on hand. The adjusting entry that should be made by the company on june 30 is?

Answers

Answer:

36,600

Step-by-step explanation:

Hope this is correct but I multiplied 30 by 1,320

A map of the state of Michigan. The measured distance between Saginaw and Alpena is 2.2 centimeters. The map key reads 1 centimeter to 50 miles.
The actual distance between Saginaw and Alpena is
miles.

Answers

Answer:

110 miles

Step-by-step explanation:

Answer:110

Step-by-step explanation:

what happens to fst when two finite populations are connected by migration (say 2% chance of migration per organism per generation, and no selection)? group of answer choices fst increases to 1 fst decreases to 0 fst stays moderate, near 0.5 fst wanders around randomly between 0 and 1 forever

Answers

When two finite populations are connected by migration , then (b) Fst decreases to 0 .

The Fixation Index denoted as Fst ,  is a measure of population differentiation, which is used to quantify the level of genetic differentiation between two populations.

The Fst ranges from 0 to 1, where 0 indicates complete gene flow between two populations and 1 indicates complete genetic isolation.

If the migration rate is 2% per organism per generation, over time this will lead to a reduction in genetic differentiation between the populations, and the Fst value will decrease towards 0.

This is because the exchange of genetic material will reduce the amount of variation that is unique to each population, which leads to an increase in the genetic similarities between the populations.

The given question is incomplete , the complete question is

What happens to Fst when two finite populations are connected by migration (say 2% chance of migration per organism per generation, and no selection) ?

(a) Fst increases to 1

(b) Fst decreases to 0

(c) Fst stays moderate, near 0.5

(d) Fst wanders around randomly between 0 and 1 forever  .

Learn more about Populations here

https://brainly.com/question/29309027

#SPJ4

Given an integer representing a 10-digit phone number, output the area code, prefix, and line number using the format (800) 555-1212.

Answers

Here we have a program written in C++ language. Each // symbol is a relative comment explaining the reason for each command line (and is not included during the program execution).

The Program:

#include <iostream>

//c++ build in library

using namespace std;

//main code body starts here

int main()

{

 //declare variable to store phone numbers,its area code, prefix and line    number.

long pnumber;   //declare long variable

int ac, prefix, lnumber;

 //declare integer variables, where ac: Area Code and lnumber is the Line Number

cout<<"Enter a 10-digit Phone Number: "<<endl;

 //cout command prints on screen the desired message

 cin>>pnumber;

 //cin command enables the user to interact with the programm and enter information manually

//main body to obtain the desired output starts below

 //each 'division' is used to allocate the correct value at the correct

 //since prefix is used to get the desired output of ( )    -

 ac = pnumber/10000000;

 prefix = (pnumber/10000)%1000;

 lnumber = pnumber%10000;

 //main body ends here

 cout<<"Based on your 10-digit number"<<endl;

 cout<<"below you have (AreaCode), Prefix, and - line number "<<endl;

 cout<<"("<<ac<<")"<<""<<prefix<<"-"<<lnumber<<endl;

 //Prints on screen the desired output of the long 10 digit Number

 return 0; //ends program

}

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

The Output Sample:

Enter a 10-digit Phone Number:

8019004673

Based on your 10-digit number

below you have (Area Code), Prefix, and - line number

(801) 900-4673

....Programm finished with exit code 0

Learn more about Output sample at:

https://brainly.com/question/14261959

#SPJ4

1/3 + 5 3/4
HELP!! PLEASE!!!

Answers

The answer is 73/12.

Answer:

\(6 \frac{1}{12}\)

Step-by-step explanation:

1) Use Least Common Denominator or (LCD)

LCD = 12

2) Make the denominators the same as the LCD.

\(5 + \frac{1 times 4 }{3 times 4 } + \frac{3 times3}{4times 3}\)

3) Simplify. Denominators are now the same.

\(5 + \frac{4}{12} +\frac{9}{12}\)

4)  Join the denominators.

\(5+ \frac{4+9}{12}\)

5)  Simplify.

\(5+\frac{13}{12}\)

6) Convert 13/12 into a mixed number.

\(5+ 1 \frac{1}{12}\)

7)  Simplify.

\(6 \frac{1}{12}\)

Decimal Form: 6.083333

Solve for x.

5x-29> -34 or 2x+31<29

Answers

Answer:

Is there more to this question?

For the first inequality, x > -1

For the second inequality, x < -1

Step-by-step explanation:

5x - 29 > -34

add 29 to both sides

5x > -5

divide both sides by 5

x > -1

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

2x + 31 < 29

subtract 31 from both sides

2x < -2

divide both sides by 2

x < -1

Find the simple interest on $6000 from 16 may 2010 to 9 october 2010 at 10% per annum.

Answers

The simple interest is $6,240.00.

The term simple interest refers the interest that is only calculated on the initial sum borrowed or deposited.

Here we need to find  the simple interest on $6000 from 16 may 2010 to 9 October 2010 at 10% per annum.

While we looking into the given question, we know te following values,

Principal amount = $6000

Time period = 16 may 2010 to 9 October 2010

The number of days between 16 may 2010 to 9 October 2010 is

=> 146 days.

Here we have the interest for 1 year,

So, the time period is written as,

And then we have to put time into years for simplicity,

146 days / 365 days/year = 0.4 years.

And the interest rate = 10%

Here we have to convert R percent to r a decimal

r = R/100 = 10%/100 = 0.1 per year.

Now, we have to apply the values on the formula, then we get by solving our equation:

A = 6000(1 + (0.1 × 0.4)) = 6240

A = $6,240.00

Therefore, the total amount accrued, principal plus interest, from simple interest on a principal of $6,000.00 at a rate of 10% per year for 0.4 years (146 days) is $6,240.00.

To know more about Simple interest here.

https://brainly.com/question/22621039

#SPJ4

Here are the ingredients needed to make 8 pancakes.
Jacob makes 24 pancakes, work out how much milk he needs

Here are the ingredients needed to make 8 pancakes. Jacob makes 24 pancakes, work out how much milk he

Answers

Answer:

900 ml of milk

Step-by-step explanation:

the scale is 1:1 so just multiply by 3

please help, thank u​

please help, thank u

Answers

Answer:

B and C

Step-by-step explanation:



Which function represents exponential growth?

f. y=35 x¹.³⁵

g. y=35 . (0.35)ˣ

h. y=35 .(1.35)ˣ

i. y=35 \div(1.35)ˣ

Answers

The function that represents exponential growth among the given options is y = 35(1.35)ˣ. As x increases, the value of y grows exponentially due to the base (1.35) being greater than 1.

To determine which function represents exponential growth among the given options, let's analyze each function and identify the exponential growth pattern.

f. y = 35x¹.³⁵: This function includes a power of x, but the exponent (1.³⁵) is greater than 1. In exponential growth, the exponent should be greater than 0 and less than 1. Therefore, function f does not represent exponential growth.

g. y = 35(0.35)ˣ: This function represents exponential decay rather than growth. The base (0.35) is between 0 and 1, indicating a decreasing trend over time.

h. y = 35(1.35)ˣ: This function represents exponential growth. The base (1.35) is greater than 1, indicating an increasing trend over time. As x increases, the function's value grows exponentially.

i. y = 35 ÷ (1.35)ˣ: This function represents exponential decay rather than growth. The base (1.35) is between 0 and 1, suggesting a decreasing pattern over time.

Therefore, among the given options, the function that represents exponential growth is:

h. y = 35(1.35)ˣ

In this function, as x increases, the value of y grows exponentially, demonstrating the characteristic of exponential growth.

For more such information on: function

https://brainly.com/question/11624077

#SPJ8

(a) log
z
xy

(b) log
z
x
3
y

(c) log
y
x



(d) log
yz
x

(e) log
x
3
y
2
1




(f) log2xy
3
(g)
dx
d

(2x
3
+3x) (h)
dx
d


4x

(i)
dx
d

log(cx
b
), where b and c are constants (j)
∂x


x
yz

(k)
∂x


x
2
y
(z
4
+z
2
+113)
Exercise 4: Simplify/solve these equations: (a) log
z
xy

(b) log
z
x
3
y

(c) log
y
x





(d) log
yz
x

(e) log
x
3
y
2
2




(f) log2xy
3
(g)
dx
d

(2x
3
+3x) (h)
dx
d


4x

(i)
dx
d

log(cx
b
), where b and c are constants (j)
∂x


x
yz

(k)
∂x


x
2
y
(24+z
2
+113)

Answers

(a) Using the logarithm rule, log zxy can be simplified as log z + log x + log y, which states that the logarithm of a product is equal to the sum of the logarithms of the individual factors.

(b) Similarly, log zx^3y can be simplified as 3log x + log z + log y, applying the logarithm rule for exponents.

(c) log yx can be rewritten as (1/log x) * log y, utilizing the change-of-base formula, which states that the logarithm of a number in one base can be expressed as the logarithm of the same number in a different base divided by the logarithm of the new base.

(d) log yzx can be rearranged as log y + log z + log x, using the commutative property of addition for logarithms.

(e) log x^3y^21 can be simplified as 3log x + 21log y, applying the logarithm rule for exponents and multiplication.

(f) log2xy^3 can be expressed as log2 + 3log x + log y, utilizing the logarithm rule for exponents and the logarithm of the base 2.

(g) Taking the derivative of 2x^3 + 3x with respect to x, we obtain 6x^2 + 3, applying the power rule and the constant rule for derivatives.

(h) The derivative of 4x with respect to x is 4, applying the power rule and the constant rule for derivatives.

(i) The derivative of log(cx^b) with respect to x is (b/x) * log(cx^b), applying the chain rule and the logarithmic differentiation rule.

(j) Taking the partial derivative of xyz with respect to x, we obtain yz, as x is treated as a constant.

(k) Similarly, the partial derivative of x^2y(z^4 + z^2 + 113) with respect to x is 2xy(z^4 + z^2 + 113), as x^2 and y are treated as constants.

Learn more about factors here:

https://brainly.com/question/14549998

#SPJ11

Professor Walter precisa pintar uma quadra, que tem o formato retangular, cujo comprimento é de 45 m por 38 m. Para isso ele vai comprar baldes de tinta em uma loja de construção. Sabendo que com cada balde de tinta ele conseguirá pintar 72 m² de piso, quantos baldes de tinta ele precisará comprar

Answers

Answer:

24 buckets

Step-by-step explanation:

Given that :

Dimension of rectangular block = 45 m by 38 m

A bucket of paint will cover 72m² of floor

Total area of floor : Length * Width

Total Area = (45m * 38m) = 1710 m²

Buckets of paint required :

Total area / Area per bucket

= 1710m² / 72m²

= 23.75 buckets

= 24 buckets

elizabeth's family went to nyc for their vacation. at the gift shop on liberty island, valerie bought three t-shirts and four keychains for $134, and jennifer bought four t-shirts and five key chains for $175. find the price of each item.

Answers

Using the elimination method, the price of one t-shirt is $30 and one key-chain is $11.

In the given question, Elizabeth's family went to NYC for their vacation.

At the gift shop on Liberty Island, Valerie bought three t-shirts and four key chains for $134, and Jennifer bought four t-shirts and five key chains for $175.

We have to find the price of each item.

Let the price of one t-shirt = $x

Let the price of one Key chain = $y

According to question

Price of three t-shirts and four key chains = $134

So the equation is

3x + 4y = $134……………….(1)

Also,

Price of four-shirts and five Key chains = $175

So the equation is

4x+5y = $175……………………..(2)

Now solving the equation using the elimination method.

Multiply Equation (1) by 5 and Equation (2) by 4, we get

15x+20y = 670....................(3)

16x+20y = 700......................(4)

Subtract equation 4 and 3, we get

x = 30

Now put the value of x in equation 1,

3*30 + 4y = $134

90+4y=$134

Subtract 90 on both side, we get;

4y = 44

Divide by 4 on both side, we get;

y = 11

Hence, the price of one t-shirt is $30 and one key-chain is $11.

To learn more about elimination method link is here

brainly.com/question/14619835

#SPJ4

Example 225 200 175 150 explain what it represents. 1 2 0 3 Amount Owed (5) 125 150 200 100 50 0 Week Amount Carmen Owes (S) 100 75 SO 25 O 1 is -$50. Weeks Carmen pays more per week than Sam. function. Which line is steeper? is negative? 3 Suppose Sam decides to pay for his bicycle in two equal weekly payments. How would that affect his rate of change? Would Sam pay more or less than Carmen Carmen buys a new bicycle. Her weekly payment plan is shown in the table. Sam also buys a new bicycle. His weekly payment plan is shown in the graph. Find The amount Carmen owes decreases by $50 each week, so her rate of change The amount Sam owes decreases by $25 each week, so his rate of change is --$25. the rate of change for each function and Graph Carmen's function on the same grid as Sam's 2 How does the graph show that the rate of change

Answers

(1) The graph shows Sam's payments in blue while that of Carmen is shown in orange color.

(2) The graph shows that the rate of change is negative because it slopes downwards from left to right, which means as the weeks go by, the amount paid decreases. The amount paid is on the y axis while the weeks is on the x axis. As y moves up in the positive direction, x moves towards the left in the negative direction.

(3) I Sam decides to pay in two equal weekly payments, then his payment plan would be $62.5 per week and hence the graph of his payment plan would be steeper than the two currently on the coordinate grid.

Example 225 200 175 150 explain what it represents. 1 2 0 3 Amount Owed (5) 125 150 200 100 50 0 Week

The 3,204 at an art convention can participate in one event: either water painting, canvas painting, or sketching. There were 478 people who decided to water paint and 384 people that decided to sketch. Each person that does canvas painting will need a canvas, which is stored in boxes. Each box holds 36 canvases. How many boxes of canvases are needed?

Answers

Answer:

around 65 boxes of canvases

Step-by-step explanation:

well 3,204 - 478 - 384 = 2,342 people left who wanted to paint on canvases

2,342/36 = 65.05 boxes of canvases:)

David wants to hang a mirror in his room. The mirror and frame must have an area of 8 square feet. The mirror is 2 feet wide and 3 feet long. Which quadratic equation can be used to determine the thickness of the frame, x?

Square with an inner frame with height of 2 ft on the left frame and width of 3 ft on the top. Arrow on the bottom frame with an x and an arrow on the right frame with an x.

2x2 + 14x − 2 = 0
3x2 + 10x − 8 = 0
4x2 + 10x − 2 = 0
x2 + 7x − 8 = 0

Answers

Answer:

Represent the thickness of the frame by x.

Framing the mirror will increase both its length and width by 2x. The area of the mirror with the frame is the product of the length and width which can mathematically be expressed as,

A = (3+2x)(2+2x) = 8

The equation above can be simplified into 4x^2 + 10x -2=0.

This equation can still be further simplified by dividing it by 2. However, it will give an answer which is not found on the choices. Thus, the answer is the third choice.

Answer:

The correct option would be C

Step-by-step explanation:

I hope this helps, if it doesn't then just message me and ill be more than happy to help :)

JB and sarah are out on a hike. they follow a river running due south for about 2.3 miles. They then decide to turn due east and hike for another 3.4 miles and come upon a beaver dam. How many miles is it from the beaver dam back to their starting point?





ty ty ty :-;​

Answers

The distance from the beaver dam back to its starting point is 4.1 miles

What is Pythagoras' theorem?

The Pythagoras theorem is a mathematical statement that specifies the connection of the sides of a right triangle. It asserts that "the  length of the hypotenuse squared is equal to the sum of the length of the opposite and the adjacent squared."

Mathematically;

hyp² = opp² + adj²

From the image attached below, the distance from the beaver dam back to the starting point is the hypotenuse of the triangle formed.

Thus;

hyp² = 2.3²  + 3.4²

hyp² = 5.29 +  11.56

hyp = √16.85

hyp = 4.1

Therefore, we can conclude that the distance from the beaver dam back to its starting point is 4.1 miles.

Learn more about the application of Pythagoras' theorem here:

https://brainly.com/question/343682

#SPJ1

JB and sarah are out on a hike. they follow a river running due south for about 2.3 miles. They then

the expected gain or loss of an experiment over the long run is called the

Answers

The expected gain or loss of an experiment over the long run is called the expected value.

The expected value is the weighted average of all possible outcomes, where the weights are the probabilities of those outcomes occurring. It is calculated by multiplying each possible outcome by its probability of occurring and then adding up these products. The expected value can be used to make decisions and assess risk in various fields, including finance, economics, and gambling. If the expected value is positive, it means that, on average, the experiment will result in a gain, while a negative expected value indicates a loss.

Learn more about experiment here

https://brainly.com/question/25303029

#SPJ11

In how many ways can 5 different novels, 3 different mathematics books, and 1 biology book be arranged on a bookshelf if the mathematics books must be together and the novels must be together

Answers

In how many ways can 5 different novels, 3 different mathematics books, and 1 biology book be arranged on a bookshelf if the mathematics books must be together and the novels must be together?

To find the number of ways, in which 5 different novels, 3 different mathematics books, and 1 biology book can be arranged on a bookshelf if the mathematics books must be together and the novels must be together, we can use the concept of permutation formulae.

Permutation formulae is the formula used to find out the number of ways in which a set of things can be arranged or ordered without repetition of the arrangement. Here, the mathematics books must be together and the novels must be together. Therefore, we can group the mathematics books together as one book and the novels together as one book. That is, we have two groups, one of size 3 (mathematics books) and one of size 5 (novels).

Therefore, the problem now reduces to finding the number of ways in which two groups of books can be arranged on a shelf. This can be done by using the permutation formulae as follows:

First, we find the number of ways to arrange the two groups on the shelf, ignoring the order within the groups. There are two ways to arrange the two groups: either the mathematics books can come first or the novels can come first.

Second, we find the number of ways to arrange the mathematics books within their group. There are 3! = 6 ways to arrange the 3 mathematics books within their group.

Third, we find the number of ways to arrange the novels within their group. There are 5! = 120 ways to arrange the 5 novels within their group.

Therefore, the total number of ways to arrange the books is given by the product of the number of ways to arrange the two groups, the number of ways to arrange the mathematics books within their group, and the number of ways to arrange the novels within their group.

Thus, the number of ways to arrange the books is:2 x 6 x 120= 1440.

Answer: 1440 words

To know more about novels visit:

https://brainly.com/question/10713550

#SPJ11

Justin worked 12 hours and 4 minutes on Saturday and 13 hours and 41 minutes on Sunday. How many hours did Justin work this weekend?

Answers

Answer:

Justin worked 25 hours and 45 minutes.

25 3/4 hours total

First add the hours together.  

12 + 13 = 25

Then add the minutes together.  

4 + 41 = 45

So 25 hours and 45 minutes

or

25 3/4 hours

45 minutes is also 3/4 of an hour

Instructions: Find the missing side of the triangle.
12
16
X
х
=

Instructions: Find the missing side of the triangle.1216X=

Answers

Answer:

x = 20

Step-by-step explanation:

c^2 = a^2 + b^2

a = 12

b = 16

c = ?

c^2 = 12^2 + 16^2

c^2 = 144 + 256

c^2 = 400

sqrt(c^2) = sqrt(400)

c = 20

a surgeon developed a new procedure for knee replacement surgery. to study its effectiveness, they recruit patients who need knee replacement surgery and are willing to participate in a blind study. the surgeon randomly assigns each volunteer to receive either the new procedure or the standard procedure. after the surgeon performs the procedure, they monitor each patient to see if one group has better results than the other. what does it mean for this experiment to be blind?

Answers

Answer: The volunteers are unaware of which surgery they receive.

Step-by-step explanation:

Pls answer correctly
Solve the system of equations and choose the correct answer from the list of options.


x + y = −3

y = 2x + 2

Answers

Answer:

x=-5/3

y=-4/3

Step-by-step explanation:

Given:

x+y=-3

y=2x+2

Substitute y into the first equation

x+2x+2=-3

combine like terms

3x+2=-3

subtract 2 from both sides

3x=-5

divide both sides by 3

x=-5/3

Substitute in x for the second equation:

y=2(-5/3)+2

y= -4/3

Hope this helps! :)

help please!
A -1.8
B -1.6
C -1.5
D -1.3

help please! A -1.8B -1.6C -1.5D -1.3

Answers

A -1.8 Because the periods each represent 0.2

Answer:

B) -1.6

Step-by-step explanation:

As you can see there is a pattern of 5 dashes, meaning that each dash would increase by 0.2

So, the dash behind the -1 equals to -1.2. The one two dashes behind the -1 would be -1.4. Sequentially, the dash E would be -1.6.

Am I correct?

10. The sum of the interior angles of a polygon is 2,340 degrees. How many sides does the polygon have?

Answers

Answer:

The regular polygon that has an interior angle sum of 2,340 is a regular polygon with 15 sides. so your answer is 15.

Other Questions
when kumquat, a contemporary sportswear company, tries to open its clothing stores in a new country, it learns that local rules require a certain percentage of its products be manufactured locally. this example fits into which category of pressures for local responsiveness? 5cd.(-cd)Monomials and polynomials The local movie theater, Scene It Cinema, had a special showing of the latest dinosaur movie. There were 6 youth tickets sold for every 5 adult tickets sold.If there were 70 adult tickets sold, how many movie tickets were sold altogether? Lila has $35.55. She buys a magazine for $3.15, a cookie for $2.20, and a shirt for $14.99. She also gets $5 from a friend. How much money does she have after the above transactions? A)$10.21 B)$14.61C)$16.51 D)$20.21 in an interesting study, epstein (1976) taught a pigeon to watch another pigeon peck keys. after the pigeons saw what key the other pigeon pecked (the red one or the green one) he would peck the same key. in order to establish this behaivor, epstein had to reinforce the learner pigeon when he did what the model pigeon did. what behavioral procedure did epstein use to establish the behavior of the learner pigeon? A fifteen passenger van is rented for a family vacation. The van rental is $75.00 per day, plus a $160.00 insurance fee. How many days can the van be rented if they want to spend less than $760.00 on the van rental? Write and solve the inequality. What is the value of x?Enter your answer in the box.x = Draw the image of the following figure after a dilation centered at the origin with a scale factor of18-16-14-12-10-8-0XS3N/W What is the equation of the line calculator? Liam ran 4 times around a circular track and did 100 jumpingjacks. He ran a total of 2.4 km. How long is one complete circuitof the track (measured in meters)? 16. Explain NTFS permissions (Chapter 5-2c)17. Identify NTFS permissions (Chapter 5-2c)18. Describe difference between NTFS permissions (Chapter 5-2c),Review Figure 5-219. Identify Windows Active hunter is making a list of phyiscal and chemical properties all of the following are included in an agile project charter, except for which one? One month ali rented 5 movies and 3 games for a total of $36. The next month he rented 7 movies and 9 games for a total of $78. Find the rental cost for each mcoie and each video game which of the following is (are) not considered part of the three areas of centric contacts or centric stops? Family contributions to the society PLEASE HELP!! In atleast 100 words, compare and contrast the written version of sojourner truth's "ain't i a woman?" with the speech she delivered at the woman's rights convention in akron, ohio, ib 1851. use details from the passage to support your answer. Why does Katniss think Peeta Wouldnt understand about owing someone or paying back your debt )? define depolarisation Complete the ordered pair for the equation y=-3x - 5.(__,4)