Feeds:
Posts
Comments

Archive for the ‘Uncategorized’ Category


This morning I read a post at sage-devel group titled “Integral Functions”, and was really interesting.

For example, say you want to define a function as the primitive integral of another function,
F(x) = \int_0^x\;f(x')\;dx',

sage: var('x')
sage: f = function('f',x)
sage: F = integral(f, x, 0, x)
sage: F.derivative(x)

gives an error… Why? derivative expect all parameters of F to be symbols, and zero is an integer.

Bypass

A sort of solution to this problem is giving a whole set of parameters to the limits, say, F(x, a, b) = \int_a^b\;dx\; f(x)

sage: var('x,a,b')
(x, a, b)
sage: f = function('f',x)
sage: F = integral(f, x, a, b)
sage: F.derivative(x)
0
sage: F.derivative(a)
-f(a)
sage: F.derivative(b)
f(b)

Thus, it’s well defined for any case.

If you don’t give integration limits,

sage: var('x')
sage: f = function('f',x)
sage: F = integral(f, x)
sage: F.derivative(x)
f(x)

it work as expected.

The discussion page is HERE

Enjoy!

DOX

Read Full Post »

About Ubuntu 10.10


It is nice that rhythm tray icon has been merged with the volume one.

The visual management of evolution-empathy-gwibber tray icon has been improved.

Empathy writes the whole date-time of any line I write, I don;t like it… How could I change it? Don;t know yet.

The menu line System->Administration->Software Sources is hidden… Why? It should be handy!!!

I installed Emacs and Ispell, but the flyspell-mode is not working :-S Holy ….!!!

Read Full Post »

Welcome!


This is my first post in this blog.

Enjoy!

Read Full Post »


Running from a destiny I wasn’t sure was mine
I chose a life of obscurity and I left my dreams behind
I traded my ambitions for the safe and simple life
But lately I feel far away and inside I feel like I

Can’t find my way home
Can’t find my way home
And if I stay here too long now
I may never find that place where I feel like I belong
Can’t find my way home

Seeking out fulfillment in a tiny plastic jar
There isn’t much to go around when you don’t know who you are
And I know that I’m a child of God but He seems so far away
And it doesn’t seem to help me much when I kneel down to pray

Can’t find my way home
Can’t find my way home
And if I stay here too long now
I may never find that place where I feel like I belong
I know that when I find it I’ll have known it all along
I feel like a dark cold night that’s reaching for the dawn

Can’t find my way home
Show me the way home
Cause if I stay here too long now
I may never find that place where I feel like I belong
Show me the way home
Show me the way home
Lord show me the way home
I know somehow I’ll find that place where I feel like I belong
Show me the way home.

Read Full Post »


Certamente, la gente crede che per essere andato a L’Italia… so italiano. Magari capivo qualcosa, però mai ho imparato bene… di meno a scribere.

Da un paio di mesi ho cominciato le lezioni. In soma, ora capisco meglio anche lo spagnolo.

Ciao ragazzi.

Read Full Post »

Older Posts »