empty symbol - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


The Empty Symbol

 

Description

Examples

Description

• 

``

• 

The empty symbol can be expressed by a pair of left single quotes with no enclosed characters (not even a blank).

• 

The following is a valid assignment statement to input to Maple.

`` := 99;

  

No characters are printed as the representation of this name.

• 

The empty symbol has various special uses within Maple.  Hence, if the empty symbol has been assigned in the above manner, strange behavior is to be expected from several Maple functions, most notably ifactor.

• 

A common use of the empty symbol is to display expressions in an unsimplified form, which Maple would normally automatically simplify.  It can also display variables with their values substituted, in unsimplified form.  In this way, it can be used in a similar manner to ifactor.  See examples below.

  

Notes: The empty symbol is quite different from the value of the global variable NULL, which is the null expression sequence. However, the output form for each consists of zero printed characters.

• 

The empty symbol is a symbol, while the empty string is a string. The empty string is input and printed as "", while the empty symbol is input as `` and not printed. The empty string cannot be assigned to, while the empty symbol can.

Examples

restart

a``

a

(1)

bNULL

c

c

(2)

a,b,c

,

(3)

nops

2

(4)

1,a,3

1,,3

(5)

1,b,3

1,3

(6)

The empty symbol can be used to display unsimplified math and formulae with values substituted.  Note the difference between using the empty symbol and quotes.

``(2)*``(3);

23

(7)

expand((7));

6

(8)

x:=2;

x2

(9)

y:=3;

y3

(10)

3*``(x)+2*``(y);

32+23

(11)

"3*(x)+2*(y)";

3*(x)+2*(y)

(12)

3*x+2*y;

12

(13)

See Also

names

NULL