Ask Your Question
1

Limit of complex functions

asked 2013-11-08 16:03:01 +0200

Luiz Roberto Meier gravatar image

Hi,

Suppose I have 2 complex numbers, z and z1 , where z = 1+2I and z1 = 3 + 4I (just an example). How can I compute the following: some_function = z * z1 and I want to know how to find the limit of some_function when z = z1.

I tried hard to find an answer. I used def to define a function, I could define the complex numbers and I can use the limit with rational / real values, but, when I use a complex number, the limit just return the entire explession.

Thank you for any idea / URL to help me.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2013-11-09 06:02:27 +0200

tmonteil gravatar image

updated 2013-11-09 06:07:54 +0200

I am not sure i understand you question since you gave two fixed values to x and x1. If you want to find the limit of the function some_function = (z -> z*z1) when z goes to z1, you can define a symbolic function (not to be confused with a python function) :

sage: z1 = 3 + 4*I
sage: some_function(z) = z * z1
sage: some_function
z |--> (4*I + 3)*z
sage: some_function.limit(z=z1)
24*I - 7
edit flag offensive delete link more

Comments

Thank you!

Luiz Roberto Meier gravatar imageLuiz Roberto Meier ( 2013-11-09 12:27:52 +0200 )edit

Your Answer

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

Add Answer

Question Tools

Stats

Asked: 2013-11-08 16:03:01 +0200

Seen: 685 times

Last updated: Nov 09 '13