MathGroup Archive 2009

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: symbolic matrix manipulation

  • To: mathgroup at smc.vnet.net
  • Subject: [mg96073] Re: symbolic matrix manipulation
  • From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
  • Date: Wed, 4 Feb 2009 05:20:02 -0500 (EST)
  • Organization: The Open University, Milton Keynes, UK
  • References: <gm99t7$70$1@smc.vnet.net>

In article <gm99t7$70$1 at smc.vnet.net>, ashwin.tulapurkar at gmail.com 
wrote:

> I am trying to simplify the following matrix expression:
> a.b.b.a with the rule: replace a.b by (b.a+1). So I expect the final
> output to be
> a.b.b.a --> (b.a+1).b.a --> b.a.b.a+b.a --> b.(b.a+1).a+b.a -->
> b.b.a.a + 2 b.a
> 
> Can you tell me how to do this?

A possible is as follows:

In[1]:= a.b.b.a //. {x___.a.b.y___ -> Distribute[x.(b.a + 1).y], 
  1 -> Sequence[]}

Out[1]= 2 b.a + b.b.a.a

Regards,
--Jean-Marc


  • Prev by Date: Re: Problem with inserting brackets in 7.0
  • Next by Date: Re: specifying the integration interval using a function
  • Previous by thread: Re: symbolic matrix manipulation
  • Next by thread: Re: symbolic matrix manipulation