answersLogoWhite

0

c = 12 + 0.4y

Multiplier is represented by k

Therefore k = 1/(1-MPC)

MPC = b = 0.4

recall C = a + by

Hence,

k = 1/(1 - 0.4)

K = 1.67

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

Calculate the equilibrium income if investment is 100 and the consumption function is 50 plus 0.75y?

125


What do you need in a excel cell to calculate a sum?

You need a formula. That formula can use the Sum function or it could use the plus sign, or several plus signs and even several Sum functions. Primarily it is the Sum function and the plus sign that is used for sums.


Consumption Expenditures plus Investment plus Government Expenditures equals?

GNP


Is y plus x2 plus 1 a function?

That is not a function, although it does involve the function of addition. A function is something that is done to numbers.


A c plus plus statement that invokes a function is known as?

...a function call.


What are the building function in c plus plus?

There is no such term as "building function" in C++.


C plus plus code to calculate a right angle?

Right angles are always 90 degrees. There is no need to calculate this; an angle is either 90 degrees or it is not. The following inline function is all you really need: inline const bool IsRightAngle(double angle) { return(angle==90.0); }


In C plus plus when a function is executing what happens when the end of the function is reached?

Control is returning to the caller of the function.


What best describes a wave on A plus?

A wave on A-plus typically refers to a positive or constructive wave function in quantum mechanics. It represents the amplitude or probability of finding a particle at a certain position. This wave function can be used to calculate various properties of the particle, such as its energy or momentum.


Consumption plus savings equals?

Disposable Income


When will you make a function inline in c plus plus?

yes,we can make function inline


What is the benefit of using function.llustrate different ways of passing argument to function in c plus plus?

Functions are used to reduce the lines of code and the complexity of the code. For an instance let us suppose that you want to calculate the factorial of numbers at different times in a program. There are two ways to do this 1. Write a 4-5 line code every time you want to calculate factorial. 2. Write a function of 4-5 lines which calculates the factorial and call that function every time you need to calculate factorial by just writing a single line. In C++ you can pass the variable, address of the variable or a reference to the variable in a function