Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
0

Substitution in implicit function

asked 4 years ago

Cyrille gravatar image

This is the code to the implicit differentiaion of a function from the theoretical point of view

    var("w1, w2, a, p")
    EU(w1, w2, a, p)= p*w1^a+ (1-p)*w2^a
    var("dw1, dw2")
    V_w1 = diff(V, w1)
    V_w2 = diff(V, w2)
    # Differential
    dV = V_w1 * dw1 + V_w2 * dw2 
    show("dV ="+latex(dV))
    # Dérivée du premier ordre
    sol=solve(dV==0, dw2)
    show(sol[0]/dw1)

Now without to be obliged to rewrite all the commands, I would like to apply this procedure to the EU function or any other function. I have tried to use dV.substitute_function(V, EU) and (sol[0]/dw1).right_hand_side() but without success. I have an amplified problem for the second order derivative since I am nosure of my formulation due to the fact that one must substitute the first order derivative inside derivation.

Preview: (hide)

Comments

What is V ?

tmonteil gravatar imagetmonteil ( 4 years ago )

V=function('V')(w1, w2). The solution you propose works nicely but not for the theoretical presentation since my_procedure(V)return an error. I would like both but at last this is nice. Then I realize it suffice ta add return to your code to obtain what I was searching. Thanks

Cyrille gravatar imageCyrille ( 4 years ago )
2

I am not sure what is wrong in my answer which merits a downvote, I do not get an error for the abstract V, see my update.

tmonteil gravatar imagetmonteil ( 4 years ago )

1 Answer

Sort by » oldest newest most voted
1

answered 4 years ago

tmonteil gravatar image

updated 4 years ago

I am not completely sure about your question, but i guess that what you call "procedure" is actually a Python function, which you can define using the def statement (check for Python introductions, there are very good tutorials online):

var("w1, w2, a, p")
EU(w1, w2, a, p)= p*w1^a+ (1-p)*w2^a

def my_procedure(V): 
    var("dw1, dw2")
    V_w1 = diff(V, w1)
    V_w2 = diff(V, w2)
    # Differential
    dV = V_w1 * dw1 + V_w2 * dw2 
    show("dV ="+latex(dV))
    # Dérivée du premier ordre
    sol = solve(dV == 0, dw2)
    show(sol[0]/dw1)

Then, calling:

my_procedure(EU)

leads to

dV=(w1,w2,a,p)  adw1pwa11adw2(p1)wa12

dw2dw1=pwa11wa+12p1

and

V=function('V')(w1, w2)
my_procedure(V)

leads to

dV=dw1w1V(w1,w2)+dw2w2V(w1,w2)

dw2dw1=w1V(w1,w2)w2V(w1,w2)

Preview: (hide)
link

Comments

I have a little complementary question : this procedure is define for w1, w2 and then for dw1 and dw2. Ok but if my variables are say x and y I would like to work with dx and dy. How to do in such a way to have an universal procedure ?

Cyrille gravatar imageCyrille ( 4 years ago )

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: 785 times

Last updated: May 12 '20