value フォルダーにある string.xml ファイルの HTML コードを使用して、数学関数を表示できます。例のように:
<string name="superscript"><html><i>a</i><sup>2</sup>+<i>y</i><sup>2</sup></html></string>
<string name="subscript"><html>f(x)<sub>1+x</sub></html></string>
xml ファイルの TextView に次のように記述します。
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/superscript" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/subscript" />
数学記号と文字については、次のリンクを確認できます。
http://en.wikipedia.org/wiki/Help:Displaying_a_formula
http://barzilai.org/math_sym.htm
http://www.myphysicslab.com/web_math.html