Dumb basic CAS question that's been driving me batty...
x = var('x');
k = var('k');
j = var('j');
t = function('t',j);
B = function('B', j, k, x);
eqn1 = B(j,k,x) == (x-t(j)) / (t(j+k) - t(j))*B(j,k-1,x) + (t(j+k
+1)-x) / (t(j+k+1)-t(j+1))*B(j+1,k-1,x);
eqn2 = eqn1*k/(x-t(j));
What sequence of simplify_rational/expand/simplify/pray/collect
operations do I need to perform on eqn2 so that the right hand side
shows two terms with one like k / (t(j+k) - t(j))*B(j,k-1,x) ?
- Rhys
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---