Loading [MathJax]/jax/output/HTML-CSS/jax.js

First time here? Check out the FAQ!

Ask Your Question
0

Solving simple utility maximization problems in sage.

asked 4 years ago

EconJohn gravatar image

updated 3 years ago

FrédéricC gravatar image

Hi all im a new user to sage as a software. Im a mod on the economics.se so I understand if this question does not meet site requirements.

Im interested in solving standard utility maximization problems in economics of the form:

u(x1,x2)=x0.71x0.32 subject to:

p1x1+p2x2=m

the goal of solving this problem would be to solve for the marshallian demand equations: x1(p1,p2,m) x2(p1,p2,m)

I know how to solve this sort of problem with pen and paper however the appropriate sage code im not sure of.

Any help would be appreciated.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 4 years ago

Cyrille gravatar image

Sorry I have no time to adapt the solution exactly to your context but to go short you can remove alpha and beta from the variables and replace it by your values. Or you can also explicitely define U( x, y, l, alpha, beta) =... and specify in L U(....).

You should try this

%display latex

var('A, x, y, l, alpha, beta, R, p_x, p_y');
U= A*x^(alpha)*y^(beta);
D = p_x*x + p_y*y;
show(U)
show(D)
solve(D==R, y)
L = U-l*(D-R)
show(L)
L_x= L.diff(x)
show(L_x)
L_y= L.diff(y)
show(L_y)
L_l= L.diff(l)
show(L_l)
z=solve([L_x==0, L_y==0, L_l==0,], x, y, l,  solution_dict=True)
z[0]
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 4 years ago

Seen: 336 times

Last updated: May 03 '20