Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
2

More problems with general power of a matrix

asked 6 years ago

Frank Zenter gravatar image

updated 6 years ago

Even though in version 8.2 the code for the general power of a matrix has been improved (c.f. question 41622), it still doesn't work in some cases, as i.e. this singular, diagonalizable matrix

A=matrix(QQbar,3,3,[[-2,-8,-12],[1,4,4],[0,0,1]])
k=var('k')
A**k

shows.

Concerning the remark in trac ticket 25520: Why not defining 0x=1 for xN, which seems reasonable, since the number of functions is 1?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 6 years ago

tmonteil gravatar image

You are absolutely right, while being correct on positive integers, the expression is not correct when specialized to k=0:

sage: [B.subs(k=i) == A^i for i in range(20)]
[False,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True,
 True]
sage: B.subs(k=0)
[ -1  -4  -8]
[1/2   2   2]
[  0   0   1]

Thanks for reporting, it is now trac ticket 25520

Preview: (hide)
link

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: 6 years ago

Seen: 742 times

Last updated: Jun 17 '18