Python Forum
Beginner user: mathematical operations - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Beginner user: mathematical operations (/thread-9051.html)



Beginner user: mathematical operations - Mahdi1994 - Mar-19-2018

Might you please help me code the following imaginary system using jupyter notebook?
I want to plot some of these variables and analyse their behavior over time.

X(t) = A(t) * L1(t) * K(t)
M(t) = A(t) * L2(t) * B(t)
L1(t) + L2(t) = 1
A(t) = A(t-1) * (1+g)
B(t) = psi * [M(t-1) + X(t-1)]
K(t) = (1-delta) * K(t-1)
M(t) = X(t)

Thank you very much.


RE: Beginner user: mathematical operations - Larz60+ - Mar-19-2018

Suggest reviewing; https://pymotw.com/3/codecs/
also: https://pypi.python.org/pypi/FontTools

Sorry this belongs in another thread!