Loading [MathJax]/jax/output/HTML-CSS/jax.js

First time here? Check out the FAQ!

Ask Your Question
0

Matrix recursion

asked 4 years ago

Cyrille gravatar image

I need to construct a non linear matricial recursive system for the series of matrix Mk like the following one

Mk[i][j]=F(Mk1[i][j],Mk1[i][j]) for M0 given

I have read that for one dimension one can use Sympy rec. But is there a way to do it simply in Sagemath?

Preview: (hide)

Comments

The problem as stated has nothing to do with matrices, since for any fixed i, j, it represents just a recurrence sequence of numbers. Why do you want to deal with matrices rather than with their individual elements?

Max Alekseyev gravatar imageMax Alekseyev ( 4 years ago )

1 Answer

Sort by » oldest newest most voted
0

answered 4 years ago

slelievre gravatar image

Define a function, either recursive or not, to do that.

Recursive version:

def Mk_rec(M0, k, F):
    import numbers
    if not isinstance(k, numbers.Integral) or k < 0:
        raise ValueError(f'Expected non-negative integer k, got: {k}')
    MS = M0.parent()  # the matrix space
    if k == 0:
        return MS(M0)
    M = Mk_rec(M0, k - 1, F)
    FF = lambda a: F(a, a)
    return MS(lambda i, j: FF(M[i, j]))

Non-recursive version:

def Mk_nrec(M0, k, F):
    import numbers
    if not isinstance(k, numbers.Integral) or k < 0:
        raise ValueError(f'Expected non-negative integer k, got: {k}')
    MS = M0.parent()  # the matrix space
    M = MS(M0)
    FF = lambda a: F(a, a)
    for j in range(k):
        M = MS(lambda i, j: FF(M[i, j]))
    return M

Examples:

sage: M0 = matrix([[0, 2], [1, -1]])
sage: F = lambda a, b: a + b
sage: Mk_nrec(M0, 2, F)
[ 0  8]
[ 4 -4]
sage: Mk_rec(M0, 2, F)
[ 0  8]
[ 4 -4]
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

1 follower

Stats

Asked: 4 years ago

Seen: 330 times

Last updated: Mar 09 '21