Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

All published worksheets from http://sagenb.org

Views: 168737
Image: ubuntu2004

Computes a harmonic conjugate for uu.

def harmonicConjugate(u): ux = diff(u, x) uy = diff(u, y) t = integrate(ux, y) return t + (diff(t, x) + uy)
u(x,y) = exp(x) * (x * cos(y) - y * sin(y)) f(z) = u(real(z),imag(z)) + i*harmonicConjugate(u)(real(z),imag(z)) f.simplify()
\newcommand{\Bold}[1]{\mathbf{#1}}z \ {\mapsto}\ z e^{z}