In Problems 10 and 11, a sequence is defined recursively. Write down the first five terms.
10. a1=3; an=4-an-1
11. a1=1; a2=2; an=-1 *an-2

In Problems 10 And 11, A Sequence Is Defined Recursively. Write Down The First Five Terms.10. A1=3; An=4-an-111.

Answers

Answer 1

Step-by-step explanation:

10. a1=3, a2=1, a3=3, a4=1, a5=3

11. a3=2x1=2, a4=2x2=4, a5=4x2=8

hope that helps :)


Related Questions

I need help math is so ACK anyone know the answer

Answers

Answer:

He should have done 8^2 + 15^2= x^2 because the hypotenuse is always the longest side and in Pythagorean theorem C represents the longest side

[tex] {x}^{2} = {(8)}^{2} + {(15)}^{2} [/tex]

[tex] {x}^{2} = 64 + 225[/tex]

[tex] {x}^{2} = 289[/tex]

[tex]x = \sqrt{289} [/tex]

[tex]x = 17[/tex]

6th grade math help me pleaseeee

Answers

Answer:

Meryann brought 6 friends to the party

Step-by-step explanation:

y=9x+24

24 is your constant because the cost for all the pizza won't change

9x will change, so x represents the number of friends she brought

and y will be 78 because it's the total amount of money

78=9x+24

all you have to do is solve this equation

54=9x

x=6

Answer:

Meryann had 6 friends at the party.

Step-by-step explanation:

Total cost = $78

Pizza cost = $24

1 Movie Ticket = $9

Movie Tickets = Total Cost - Pizza Cost

Movie Tickets = $78 - $24 = $54

No. of Friends = Movie Tickets ÷ Movie Ticket

No. of Friends = $54 ÷ $9 = 6

No. of Friends = 6


Convert the binary expansion 1100101 base 2 to expansions

1a)
base 4
1b)
base 10



please explain how you got your answer as well

Answers

The binary expansion 1100101 base 2 can be converted to base 4 and base 10. In base 4, the expansion is 313 and in base 10, it is 101.

To convert the binary expansion 1100101 base 2 to base 4, we group the binary digits into pairs from right to left. Starting from the rightmost pair, we convert each pair to its equivalent base 4 digit. In this case, the pairs are 01, 01, 10, and 11, which correspond to the base 4 digits 1, 1, 3, and 3, respectively. So the base 4 expansion is 313.

To convert the binary expansion 1100101 base 2 to base 10, we can use the positional value system. Each binary digit represents a power of 2. Starting from the rightmost digit, we assign powers of 2 to each digit in increasing order from right to left. In this case, the digits are 1, 0, 1, 0, 0, 1, and 1, which correspond to the powers of 2^6, 2^5, 2^4, 2^3, 2^2, 2^1, and 2^0, respectively. Evaluating these powers of 2, we get 64, 0, 16, 0, 0, 2, and 1. we obtain 64 + 0 + 16 + 0 + 0 + 2 + 1 = 101 in base 10.

Therefore, the binary expansion 1100101 base 2 is equivalent to 313 base 4 and 101 base 10.

Learn more about binary expansion here:

https://brainly.com/question/32678181

#SPJ11

which side is opposite the middle size angle give the letter name ​

Answers

Answer:

opposite of 55 degrees would be KL

opposite of 97 degrees would be ML

opposite of 28 degrees would be MK

Step-by-step explanation:

mark me brainliest if right!!!

A random sample of 750 US adults includes 330 that favor free tuition for four-year colleges. Find the margin of error of a 98% confidence interval estimate of the percentage of the population that favor free tuition O 7.7% 04.2% O 1.8% O 3.5% O 3.7%

Answers

Therefore, the margin of error of a 98% confidence interval estimate of the percentage of the population that favor free tuition is 4.2%.

The margin of error is the difference between the sample statistic and the population parameter. It shows how much the sample result can deviate from the actual population parameter.Here, the sample size n = 750, and the proportion of adults in the US who favor free tuition for four-year colleges is p = 330/750 = 0.44.Using the z-distribution, we can calculate the margin of error for the 98% confidence interval as follows:zα/2 = z0.01/2 = 2.33margin of error = zα/2 * √(p(1-p)/n)margin of error = 2.33 * √(0.44(1-0.44)/750)margin of error ≈ 0.042 or 4.2%Therefore, the margin of error of a 98% confidence interval estimate of the percentage of the population that favor free tuition is 4.2%.

To know more about percentage,

https://brainly.com/question/24877689

#SPJ11


Using Matlab, include the code, a brief discussion of the
code/logic, graphs and screenshots with results, and a brief
analysis/discussion of the results.
4. Repeat exercise 3 using the Secant method. Repeat iterations until the approximate error becomes less than 0.1%. (20%] a. Which method is better? Secant or False-position?

Answers

The correct answer is The logic behind the Secant method is to iteratively update two initial guesses, x0 and x1, based on the function evaluations at those points. The formula x2 = x1 - (f(x1) * (x1 - x0)) / (f(x1) - f(x0)) is used to update the guesses and obtain a new approximation, x2

Here's an example MATLAB code that implements the Secant method to find the root of a function:

% Function to find the root of

function y = myFunction(x)

[tex]y = x^3 - 5*x^2 + 6*x - 2;[/tex]

end

% Secant method

x0 = 0; % Initial guess x0

x1 = 1; % Initial guess x1

approx_error = 1; % Initial approximation error

while approx_error > 0.001 % Set the desired approximation error threshold

[tex]x2 = x1 - (myFunction(x1) * (x1 - x0)) / (myFunction(x1) - myFunction(x0));[/tex]

[tex]approx_error = abs((x2 - x1) / x2) * 100; % Calculate the approximation[/tex]error

   x0 = x1;

   x1 = x2;

The logic behind the Secant method is to iteratively update two initial guesses, x0 and x1, based on the function evaluations at those points. The formula x2 = x1 - (f(x1) * (x1 - x0)) / (f(x1) - f(x0)) is used to update the guesses and obtain a new approximation, x2. The iteration continues until the approximation error, calculated as the absolute difference between x2 and x1 divided by x2, falls below the desired threshold (in this case, 0.001).

To compare the Secant method with the False-position method, you can apply both methods to the same function and compare their convergence and accuracy. You can also analyze the number of iterations required for each method to achieve a certain level of approximation error.

Please note that in order to generate graphs and screenshots with results, it would be best to run the code in a MATLAB environment and visualize the results directly.

Learn more about statistics here:

https://brainly.com/question/29765147

#SPJ11

Today i will walk 3 miles per hour to school, which is 1.5 miles away how many hours would this trip take

Answers

Answer: 30 minutes so 1/2 hour

Step-by-step explanation:

Because 3 miles = 1 hour

1.5 times 2 = 3

divide 2 on both sides

Answer:

2 hours

Step-by-step explanation:

divide3 by 1.5 and that is how long it will take you

the factors. 2. Fill in the blanks with appropriate word(s) or numbers. a) 6x 10³ +3× 10 + 4 x 10-2is written in standard form as b) Four hundred seven and thirty-four thousandths in standard form is written as c) 86.00405 is written in words as d) (3x*y) written without negative exponents is e) 0.0675= % f) 44% is the same as the fraction in simplest form. g) When you multiply a natural number by a decimal, when do you get a result more than that number? h) 13.982 rounded to the nearest tenths is i) 4 tens minus 4 tenths = (write the answer in standard form)

Answers

Answer:

answer is a

Step-by-step explanation:

first solve

solve for gcf

flip

divide

then you add

and you get 0.928838

An analyst Is forecasting net Income for Excellence Corporation for the next fiscal year. Her low-end estimate of net Income is $261,000, and her high-end estimate is $312,000. Prior research allows her to assume that net income follows a continuous uniform distribution. The probability that net income will be greater than or equal to $299,500 Is Multiple Choice 75.5% O o 24.5% 84.4% O O 41.6%

Answers

A net income forecast for Excellence Corporation is made by an analyst for the next fiscal year. Low-end estimate of net income is $261,000High-end estimate is $312,000. Net income follows a continuous uniform distribution. To find: The probability that net income will be greater than or equal to $299,500. In order to solve the problem, we need to calculate the probability that net income will be between $299,500 and $312,000.

Then, we will subtract it from the probability that net income will be between $261,000 and $312,000. This difference will give us the required probability. P(261000 <= X <= 312000) = (312000-261000) / (312000-261000) = 0.2P(299500 <= X <= 312000) = (312000-299500) / (312000-261000) = 0.55P(X >= 299500) = P(299500 <= X <= 312000) - P(261000 <= X <= 312000) = 0.55 - 0.2= 0.35 or 35%.

Thus, the probability that net income will be greater than or equal to $299,500 is 35%. Therefore, the answer is: 24.5%.

Know more about probability:

https://brainly.com/question/31828911

#SPJ11








Using the part-whole meaning of a fraction, find the larger of each. Write down your explanation. 12 10 d. and and f. and 101 19

Answers

we can conclude that 12/17 is the larger fraction between 12/17 and 12/19 using the part-whole meaning of a fraction.

To determine which fraction is larger between 12/17 and 12/19 using the part-whole meaning of a fraction, we need to compare the sizes of the parts (numerators) relative to the wholes (denominators) for both fractions.

Let's consider the fractions 12/17 and 12/19:

For 12/17:

- The numerator, 12, represents a part of the whole.

- The denominator, 17, represents the total number of equal parts into which the whole is divided.

For 12/19:

- The numerator, 12, also represents a part of the whole.

- The denominator, 19, represents the total number of equal parts into which the whole is divided.

Since the numerators are the same (both 12) and we are comparing the fractions with the same numerator, the fraction with the smaller denominator represents larger parts or more significant portions of the whole.

Comparing the denominators, we can see that 17 is smaller than 19. This means that the whole in 12/19 is divided into fewer parts compared to the whole in 12/17. Therefore, each part of the whole in 12/17 is larger than each part in 12/19.

As a result, we can conclude that 12/17 is the larger fraction between 12/17 and 12/19 using the part-whole meaning of a fraction.

Learn more about Fraction here

https://brainly.com/question/30335970

#SPJ4

What is the solution to this system

Answers

Answer:

(1, - 1)

Step-by-step explanation:

The solution to a system of equations given graphically is at the point of intersection of the 2 lines.

The lines intersect at (1, - 1)

Then (1, - 1 ) is the solution to the system.

PLSS HELP MEE AND NO BOTS I WILL REPORT Find the equation of the line below. If necessary, use a slash (/) to indicate a
division bar.
(6,1)

Answers

The answer is 1/6 I think that is correct

Can someone pls help me ASAP I’ll give brainiest


Also show how u got the answer step by step pls

Answers

3^x+1=3^3
X+1=3
X=3-1
X=2

People were polled on how many books they read the previous year. Initial survey results indicate that s = 13.6 books Complete parts (a) through (d) below. Click the icon to view a partial table of critical values. (n) How many subjects are needed to estimate the mean number of books read the previous year within six books with 90% confidence? This 90% confidence level requires subjects. (Round up to the nearest subject.)

Answers

Approximately 48 subjects are needed to estimate the mean number of books read the previous year within six books with 90% confidence.

To estimate the mean number of books read the previous year within a certain margin of error, we need to determine the sample size required. In this case, we want to estimate the mean with a 90% confidence level and a margin of error of ±6 books.

The formula to calculate the required sample size is given by:

n = (Z * σ / E)²Where:n = sample sizeZ = z-value (corresponding to the desired confidence level)σ = standard deviation (unknown in this case)E = margin of error

Since the standard deviation is unknown, we can use the initial survey result, s = 13.6 books, as an estimate for σ. However, this may result in a larger sample size than necessary.

Referring to the critical values table, we find the z-value corresponding to a 90% confidence level is approximately 1.645. Plugging in the values into the formula:

n = (1.645 * 13.6 / 6)²n ≈ 47.57

Since the sample size must be a whole number, we round up to the nearest subject. Therefore, approximately 48 subjects are needed to estimate the mean number of books read the previous year within six books with 90% confidence.

Learn more about sample size

brainly.com/question/30174741

#SPJ11

Two discrete random variables have a joint PMF as described in the following table. PM (m, n) m = 1 2 m = 3 n=1 1/5 7/45 1/9 n = 2 8/45 4/45 2/45 n = 3 2/15 1/15 1/45 (a) Find the marginal PDFs, P(m) and Py(n). Р (b) Find Pr(N=1|M= 2). (c) Find Pr(MEN). (d) Find Pr(M>N).

Answers

a. P(1) = 0.3556, P(2) = 0.3111, P(3) = 0.0444; Py(1) = 0.5333, Py(2) = 0.4444, Py(3) = 0.1222 b. P(N = 1 | M = 2) ≈ 0.2574 c.P(M = 2, N = 3) ≈ 0.038 d.  Pr(M>N) = 0.5333.

a. The marginal probability function of m is given by P(m) = Σn P(m, n) and that of n is given by P(n) = Σm P(m, n).

Thus, the marginal PDFs are: P(1) = 1/5 + 8/45 + 2/15 = 0.3556 P(2) = 7/45 + 4/45 + 1/15 = 0.3111

P(3) = 1/9 + 2/45 + 1/45 = 0.0444 P(1) + P(2) + P(3) = 1 Py(1) = 1/5 + 7/45 + 2/15 = 0.5333

Py(2) = 8/45 + 4/45 + 1/15 = 0.4444 Py(3) = 2/15 + 1/15 + 1/45 = 0.1222 Py(1) + Py(2) + Py(3) = 1.

b. We need to find P(N = 1 | M = 2).

From the joint probability distribution table, we can see that P(N = 1, M = 2) = 8/45. P(M = 2) = 0.3111.

Using the conditional probability formula, P(N = 1 | M = 2) = P(N = 1, M = 2)/P(M = 2) = 8/45 ÷ 0.3111 ≈ 0.2574

c. We need to find the probability that M = E and N = N.

Since the two random variables are independent, we can simply multiply their probabilities: P(M = E, N = N) = P(M = E) × P(N = N).

The probability distribution of M is given by: M=1 with probability 0.3556 M=2 with probability 0.3111 M=3 with probability 0.0444

The probability distribution of N is given by: N=1 with probability 0.5333 N=2 with probability 0.4444 N=3 with probability 0.1222

Therefore, P(M = 2, N = 3) = P(M = 2) × P(N = 3) = 0.3111 × 0.1222 ≈ 0.038

d. We need to find P(M > N).

There are three possible pairs of values for (M, N) such that M > N: (M = 2, N = 1), (M = 3, N = 1), and (M = 3, N = 2).

The probabilities of these pairs of values are: P(M = 2, N = 1) = 1/5 P(M = 3, N = 1) = 1/9 P(M = 3, N = 2) = 1/15

Therefore, P(M > N) = P(M = 2, N = 1) + P(M = 3, N = 1) + P(M = 3, N = 2) = 1/5 + 1/9 + 1/15 = 0.5333.

Answer: a. P(1) = 0.3556, P(2) = 0.3111, P(3) = 0.0444; Py(1) = 0.5333, Py(2) = 0.4444, Py(3) = 0.1222 b. 0.2574 c. 0.038 d. 0.5333

Know more about  marginal probability here,

https://brainly.com/question/30075742

#SPJ11

what equation represents this sentence?
0.7 increased by a number is 3.8.

a. 3.8 n = 0.7
b. 3.8 + n, = 0.7
c. 3.8n = 0.7
d. 0.7 + n = 3.8

Answers

The equation that represents the sentence "0.7 increased by a number is 3.8" is d) 0.7 + n = 3.8

To understand why this equation is the correct representation, let's break it down. The phrase "a number" can be represented by the variable n, which stands for an unknown value. The phrase "0.7 increased by" implies addition, and the number 0.7 is being added to the variable n. The result of this addition should be equal to 3.8, as stated in the sentence.

Therefore, we have the equation 0.7 + n = 3.8, which indicates that when we add 0.7 to the unknown number represented by n, we obtain a value of 3.8. This equation accurately captures the relationship described in the sentence, making option d, 0.7 + n = 3.8, the correct choice.

To know more about equation refer here:

https://brainly.com/question/29657992

#SPJ11

If a man invests $1000 in a savings account and another $1000 in a fixed deposit. If the savings account pays 4.5% interest per annum and the fixed deposit pays 6% interest per annum, find the total amount after 1 year of investment. Please I need a quick answer to this!

Answers

Answer:

Results are below.

Step-by-step explanation:

Giving the following information:

Savings account:

PV= $1,000

n= 1

i= 0.045

Fixed Deposit:

PV= $1,000

n= 1

i= 0.06

To calculate the future value, we need to use the following formula:

FV= PV*(1+i)^n

Savings account:

FV= 1,000*1.045^1

FV= $1,045

Fixed deposit:

FV= 1,000*1.06^1

FV= $1,060

What function is shown in the graph?
A)
y=-3X
B)
B
y = 3-X
0
y = 3x + 2
D)
y = 3* + 2

Answers

Answer:

5x

Step-by-step explanation:

got it right on edg

The perimeter of a rectangular field is 298 yards. If the width of the field is 63 yards, what is its length?

Answers

Answer:

The length is 86 yards.

Step-by-step explanation:

63 is the width so,

63 + 63 = 126

Now subtract this from the total perimeter,

298 - 126 = 172

and divide by 2 because there are sides with the same length

172/2 = 86

The length is 86.

Azim wants to buy a tablet computer that is priced at $255 25. If the sales tax rate on the computer is 8%, how many dollars and cents will Azim spend on the sales tax only?​

Answers

8% of $255.25 is $20.42

One of the legs of a right triangle measures 12 cm and the other leg measures 13 cm find the measure of the hypotenuse if necessary round the nearest 10th

Answers

Answer:

17.7 cm

Step-by-step explanation:

One of the legs of a right triangle measures 12 cm and the other leg measures 13 cm find the measure of the hypotenuse if necessary round the nearest 10th

To find the Hypotenuse of a right angle triangle, we solve using Pythagoras Theorem

Hypotenuse ² = Opposite ² + Adjacent ²

Hypotenuse = √Opposite ² + Adjacent ²

Opposite = 12 cm

Adjacent = 13 cm

Hence,

Hypotenuse = √12² + 13²

= √144 + 169

= 17.691806013 cm

Approximately = 17.7 cm

Therefore, the measure of the Hypotenuse is 17.7 cm

M is the midpoint of PQ. PM = 7x + 8 and MQ = 5x+ 20. Find the value of x.​

Answers

M is the midpoint, so PM and MQ are equal,
So you would do 7x+8=5x+20
Then it would be 2x = 12
So 12 / 2, which is 6
X = 6

The area of a rectangle is 45.5 square inches. The base of the rectangle is 7 inches. What is the height of the rectangle in inches?

Answers

Answer:

B: 6.5 inches

Step-by-step explanation:

Given,  

Area of the rectangle = 45.5 sq. inches  

The Base of the rectangle = 7 inches  

 

45.5 = l * 7  

l = 45.5/7

l = 6.5 inches

Answer:

silly billy your a tree with branches and leaves hogwarts has an olw that deleivers letters

Step-by-step explanation:

A=1/2h(b+b)


a
77 ft sq.
b
29 ft sq
c
154 ft sq
d
392 ft sq.

Answers

Answer:

c

Step-by-step explanation:

Answer:

Step-by-step explanation:

Putting values in the equation

A = 1/2(7)(8 + 14)

= 1/2(7)(22)

= 1/2(154)

= 77 ft. sq

Option A is the correct answer


Let f be a continuous function on R. Suppose f(x) > 0 for all
x and (f(x))2 = 2f for all x ≥ 0. Show that f(x) =
x for all x ≥ 0.
5. Let f be a continuous function on R. Suppose f(x) > 0 for all x and (f(x))2 = 2 5c" f for all x > 0. Show that f(x) = x for all x > 0. . -

Answers

Given that f is a continuous function on R, f(x) > 0 for all x, and [tex]f(x)^{2}[/tex] = 2f for all x ≥ 0, we need to show that f(x) = x for all x ≥ 0.

Let's assume that there exists a value a ≥ 0 for which f(a) ≠ a. Since f(x) is continuous, the Intermediate Value Theorem can be applied. Consider the function g(x) = f(x) - x. Since g(a) ≠ 0, either g(a) > 0 or g(a) < 0.

If g(a) > 0, it implies that f(a) - a > 0, which leads to f(a) > a. But this contradicts the given condition that f(x) > 0 for all x. Hence, g(a) cannot be greater than 0.

Similarly, if g(a) < 0, it implies that f(a) - a < 0, which leads to f(a) < a. Again, this contradicts the given condition that f(x) > 0 for all x. Therefore, g(a) cannot be less than 0.

Since g(a) cannot be greater than 0 or less than 0, the only possibility is that g(a) = 0, which implies f(a) = a. This holds true for all a ≥ 0. Hence, we can conclude that f(x) = x for all x ≥ 0.

Therefore, based on the given conditions, we have shown that f(x) = x for all x ≥ 0.

Learn more about function here:

brainly.com/question/30721594

#SPJ11

Two sides of a triangle measure 8 cm and 15 cm. Whi[:h could be the length of the third side?
O 6 cm
O 18 cm
O 24 cm
O 28 cm

Answers

18 cm is correct .

Step-by-step explanation:

The sum of two smaller sides is greater that the largest side.

It is given that the two sides of a triangle measure 8 cm and 15 cm.

Case 1: Let 8 cm and 15 cm. are smaller side. So,

Third side < 8 + 15

Third side < 23

It means 3rd side must be less than 23

Case 2: Let 15 cm is the largest side.

15 < Third side + 8

15 - 8 < Third side

7 < Third side

It means 3rd side must be greater than 7.

Since only 18 is less than 23 and greater than 7, therefore the possible length of third sides is 18 cm and option 2 is correct.

3. Which property justifies rewriting
2r-7x
*(2-7) ?
OA. Associative property of multiplication
OB. Distributive property
OC. Commutative property of multiplication
O D. Associative property of addition

Answers

B distributive property

Find the number of edges on this solid.
Enter

Answers

It has 8 sides 2 in the front and back and 6 on the sides and has 12 actual edges

An edge is formed when two faces come together. The number of edges in the given solid is 18.

What is an edge?

An edge is formed when two faces come together. A cube, for example, has 12 edges, a cylinder has two, and a spherical has none.

The number of edges in the given solid is 18.

Learn more about Edge:

https://brainly.com/question/2272331

#SPJ2

Complete the equation of the line through (-8,-2) and (-4,6)
Use exact numbers.
y=

Answers

Answer:

round 55666777 for 5th 50th is not a big game for a player who will give the 8th or 3rd season to 466

a technology company makes more than 5 printer every hour. Which graph represent the number of printers made in 4 hours?

Answers

Answer:

See the attached file

Step-by-step explanation:

Given data

Say numbers of printer made per hour = 5 printers

Hence in 1 hour, they will make 5 printers

in 4 hours they will make

=4*5

=20 printers

The graph of this situation when plotted will give a straight line graph

Kindly find attached a straight line graph for your reference

Other Questions
You are considering an investment opportunity that requires an initial investment of $159 million in period 0. Starting in one year, it will generate $12.1 million per year in perpetuity (i.e. every y What should Colin do first as he begins investing? Make paper trades Learn about the market Let (an) n0 be the sequence that starts by 6, 10, 15, 21, 28, ............i) Give a recursive definition for the sequence. (an=?)ii) Use polynomial fitting to find the formula for the nth term Which of the following is NOT true about globalization? Multiple Choice Is not a new phenomenon Began towards the end of the fifteenth century Creates interdependencies among nations Requires transparency Which of the following is a type of political risk for global managers? Multiple Choice Cultural Financial Operational Organizational How many employees are unemployed nationwide. How many employees are unemployed in California. How does this unemployment affect the supply/demand curve for products and services. (please include info on demand curve!)bu Suppose you have some number of identical Rubik's cubes to distribute to your friends. Imagine you start with a single row of the cubes. 1. Find the number of different ways you can distribute the cubes provided: 1. You have 3 cubes to give to 2 people. 2. You have 4 cubes to give to 2 people. 3. You have 5 cubes to give to 2 people. 4. You have 3 cubes to give to 3 people. 5. You have 4 cubes to give to 3 people. 6. You have 5 cubes to give to 3 people. 2. Make a conjecture about how many different ways you could distribute 7 cubes to 4 people. Explain. 3. What if each person were required to get at least one cube? How would your answers change? A client with acute kidney injury has a serum potassium level of 7.0 mEq/L. The nurse should plan which actions as a priority? Select all that apply.1. place the client on a cardiac monitor2. notify the HCP3. put the client on NPO status except for ice chips4. review the client's medications to determine if any contain or retain potassium5. allow an extra 500 mL of intravenous fluid intake to dilute the electrolyte concentration As restrictions for Covid-19 have eased and businesses are opening at some point people will again go out to dinner. When evaluating different alternatives for a Saturday night outing at a fine restaurant, explain the difference between the Universal set, The Retrieval set, and the evoked set. Then explain from which set of alternatives would you choose a restaurant to go to and why. consider the figure above. which of the following correctly identifies each curve? Which of the following statements about memory is TRUE, according to research? The hippocampus is needed to form new long-term memories, but it is not used for functions like divergent creative thinking. As their name implies, muscle memories are stored outside the brain. Even without a hippocampus, people can store new priming memories and procedural memories. Exercising requires energy, and therefore weakens memory by spending energy on physical activity instead of mental activity. State the order for the given partial differential equation. Determine whether the given order differential equation is linear or nonlinear. a. ^2u/t^2 = c^2 ^2u/x^2b. ^2u/t^2 = c^2 ^2u/x^2 + ^2u/y^2c. ^2u/x^2 + ^2u/y^2 = f(x,y)d. xy^3 ^2y/x^2+yx^2+y/x = 0 A movie and TV show platform, Netflicks, wanted to determine how many hours per week its users consumed media. A random survey of 78 users revealed an average watch time of 15.6 hours per week with a standard deviation of 2.5 hours. Determine the 95% confidence interval for the average weekly watch time for all Netflicks users (hours), if it is known that watch time is normally distributed. Give the upper limit only (in hours) correct to three decimal places. QUESTION 3 Psychological contracts are based on: trust commitment need satisfaction loyalty All of the answers listed Hygiene factors are part of the theory of motivation. two-factor equity expectancy goal-setting need QUESTION 5 Providing recognition to employees for significant achievements at work would help satisfy their needs. self-actualization esteem belonging and love Osafety and security physiological 00 An insurer assumes that the number of claims, N, in one month from a particular type of policy follows the distribution: P(N = 0) = 0, P(N = 1) = 1 0. Prior beliefs on the parameter are represented by a beta distribution with density function (0) = 2(1 0), 0 0 1 There are a total of 10 claims on this policy over a 16 month period. The claims are assumed to arise independently. (a) Derive the posterior distribution for 0. [4 marks] (b) Determine the Bayesian estimate for under all-or-nothing loss. [3 marks] Which of the following best describes a chemical reaction in a state of equilibrium?a) The value of the equilibrium constant, Kc is 1.b) The concentrations of reactants are equal to the concentrations of products.c) Reactant molecules are forming products as fast as product molecules are reacting to form reactants.d) The limiting reagent has been consumed.e) All chemical reactions have stopped Which of the following terms refers to an avoidance fallacy that falsely suggests the opposition has ridiculous views in order to make them easier to attack? 1) Begging the question 2) Red herring 3) Straw man 4) Ad hominem 5) Bandwagon 6) Ad populu a pie chart of population by age categories is an example of: Sectors of the external environment and the five forces of competition.How and why are Environmental and Industry analyses relevant to Starbucks overall. Suppose you get a job at MICROVIEW, a small manufacturer of TV sets installed in cars and boats. Business has declined recently, foreign rivals from emerging markets are increasing competition, and management is worried. Because MICROVIEW does all its manufacturing in Canada and the United Kingdom, it lacks cost advantages, and its prices are relatively high. After studying the problem, you conclude that MICROVIEW should move much of its production to Mexico, but senior management knows little about FDI.Prepare a report to management using an evidence-based approach and:Analyse the current geographical and competitive situation of MICROVIEW. Also explain why MICROVIEW should be interested in foreign manufacturing and recommend which type of FDI MICROVIEW should use in Mexico. ALSO Explain the advantages and disadvantages the venture should expect from manufacturing in Mexico? What would wages payable and unearned revenue be?