7

How can I write the "Real number symbol" in Mathematica?

Excellll
  • 12,847
Tyilo
  • 2,845

2 Answers2

6

You can do it with escdsResc You could also replace R with any letters from a-z, both uppercase and lowercase, to get the double-struck version of the letter.

Another way is writing \[DoubleStruckCapitalR] or whatever character you want to be double-struck.

Reference: http://reference.wolfram.com/mathematica/guide/NotationalAlphabetCharacters.html#647579870

Simon
  • 675
Tyilo
  • 2,845
0

Be careful, escdsResc does not represent the domain of real numbers. For this purpose type escrealsesc or Reals.

In[1]:= TrueQ /@ {Element[Pi, \[DoubleStruckCapitalR]], Element[Pi, Reals]}
Out[1]= {False, True}
lezambranof
  • 195
  • 1
  • 6