Ask Your Question

ajd's profile - activity

2022-02-10 22:51:56 +0200 received badge  Famous Question (source)
2018-12-16 18:54:53 +0200 asked a question Riemann map between two different domains

Sage has the RiemannMap functions which allow you to plot the Riemann map from a circle to a domain. Is there a way to compose two of these to plot the Riemann map between two different arbitrary domains?

2018-04-19 17:03:19 +0200 received badge  Notable Question (source)
2018-03-24 09:12:51 +0200 received badge  Famous Question (source)
2017-02-17 22:43:10 +0200 received badge  Notable Question (source)
2017-02-11 13:52:38 +0200 received badge  Good Question (source)
2017-02-11 13:52:17 +0200 received badge  Popular Question (source)
2016-06-06 17:27:38 +0200 received badge  Popular Question (source)
2014-08-22 03:05:43 +0200 received badge  Supporter (source)
2014-08-14 20:14:09 +0200 received badge  Editor (source)
2014-08-14 06:09:48 +0200 received badge  Nice Question (source)
2014-08-14 02:13:01 +0200 received badge  Student (source)
2014-08-13 19:59:15 +0200 received badge  Scholar (source)
2014-08-13 19:57:09 +0200 asked a question Sinc function

I am trying to perform some calculus involving the function $f(x) = \sin(x)/x$ in Sage. This function has a removable sigularity at the origin. Is there a way that I can "modify" the function in Sage to set $f(0) = 1$ while preserving the ability to do things like symbolically differentiate it?

2014-08-13 19:06:57 +0200 asked a question Defining a function of vector variables

I would like to define a Sage function that takes a vector variable and computes the result of some vector function on it, something like

f(v) = v.dot_product(vector((1,1)))

However, when I try to run this in Sage, I get

AttributeError: 'sage.symbolic.expression.Expression' object has no
attribute 'dot_product'

Is there a way to achieve this effect in Sage?