How can I write the "Real number symbol" ℝ in Mathematica?
Asked
Active
Viewed 7,406 times
7
2 Answers
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
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