Singular
https://www.singular.uni-kl.de/forum/

Rational Functions
https://www.singular.uni-kl.de/forum/viewtopic.php?f=10&t=1835
Page 1 of 1

Author:  Steve [ Mon Jun 14, 2010 4:58 pm ]
Post subject:  Rational Functions

Hello-

I am having trouble using transcendental extension for manipulation of rational functions. I would like to have a matrix with quolynomial entries. Is this possible in Singular?

Thank you.

Steve

Author:  gorzel [ Mon Jun 14, 2010 7:12 pm ]
Post subject:  Re: Rational Functions

Sure you can do.
See parameter and 4.10 matrix declariations
e.g.:
Code:

ring Rt = (0,s,t),(x,y),lp;  // s and t are  transcendal parameters

// define a 2x3 matrix with polynomial entries in x and y
// having rational coefficients in Q(s,t)
matrix m[2][3] = 2/t*x+1,1, xy, s/(t2-1),s/t*y,0;
m;
m[2,3] = -1;   // new assignment
print(m);

Author:  Steve [ Mon Jun 14, 2010 7:53 pm ]
Post subject:  Re: Rational Functions

Thanks. That helps!

Page 1 of 1 All times are UTC + 1 hour [ DST ]
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/