11.07.2015 Views

Maple 9 Learning Guide - Maplesoft

Maple 9 Learning Guide - Maplesoft

Maple 9 Learning Guide - Maplesoft

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

22 • Chapter 2: Mathematics with <strong>Maple</strong>: The BasicsOther properties of sequences will become apparent as you progressthrough this manual. Sequences extend the capabilities of many basic<strong>Maple</strong> operations. For example, concatenation is a basic name-formingoperation. The concatenation operator in <strong>Maple</strong> is “||”. You can usethe operator in the following manner.> a||b;abWhen applying concatenation to a sequence, the operation affects eachelement. For example, if S is a sequence, then you can prepend the namea to each element in S by concatenating a and S.> S := 1, 2, 3, 4;S := 1, 2, 3, 4> a||S;a1 , a2 , a3 , a4You can also perform multiple assignments using expression sequences.For example> f,g,h := 3, 6, 1;f, g, h := 3, 6, 1> f;3> h;1

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!