Online Algebra Calculator
Many of users do not use powerful Maxima computer algebra system for systematic work, but for ad hoc algebraic calculations – equations, functions, matrixes, etc. only. To do this job, it is not useful to download the whole application from a web site.
(%i1)toeplitz([1,2,3],[x,y,z]); [ 1 y z ] [ ] (%o1) [ 2 1 y ] [ ] [ 3 2 1 ] (%i2) toeplitz([1,1+%i]); [ 1 1 - %i ] (%o2) [ ] [ %i + 1 1 ] (%i3)
toeplitz([1,2,3,4],[x,y,z]); [ 1 y z ] [ ] [ 2 1 y ] (%o1) [ ] [ 3 2 1 ] [ ] [ 4 3 2 ] (%i2) toeplitz([1,1+%i]); [ 1 1 - %i ] (%o2) [ ] [ %i + 1 1 ] (%i3)
toeplitz([1,2,3,4,5,6]); [ 1 2 3 4 5 6 ] [ ] [ 2 1 2 3 4 5 ] [ ] [ 3 2 1 2 3 4 ] (%o1) [ ] [ 4 3 2 1 2 3 ] [ ] [ 5 4 3 2 1 2 ] [ ] [ 6 5 4 3 2 1 ] (%i2) toeplitz([4,3]); [ 4 3 ] (%o2) [ ] [ 3 4 ] (%i3)