	
	_M_i_s_c_e_l_l_a_n_e_o_u_s _M_a_t_h_e_m_a_t_i_c_a_l _F_u_n_c_t_i_o_n_s
	
	     abs(x)
	     sqrt(x)
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     These functions compute miscelaneous mathematical func-
	     tion.  The naming follows the standard for computer
	     languages such as C or Fortran.
	
	_S_e_e _A_l_s_o:
	
	     Arithmetic.
	
	_E_x_a_m_p_l_e_s:
	
	     xx <- -9:9
	     plot(xx, sqrt(abs(xx)),  col = "red")
	     lines(spline(xx, sqrt(abs(xx)), n=101), col = "pink")
	
