Metaform
График Функция Модуль
ГрафикРешение
Результат
  ФункцияГрафик
Производная
Корни
Интеграл
Модуль
arcsin
log
step
kor
ctg
sec
cosec
arccos
arcctg
sh
ch
th
perevod
fac
tg
cth
Metaform
Арксинус

Арксинус

Логарифм


function arcsin(x:fload):fload;
var a,result:fload;
begin
textcolor(12);
arcsin:=0;
result:=0;
if not((x>=-1)and(x<=1))
then
writeln('Неверный "x"!')
else
if (x=1)or(x=-1)
then
result:=pi*x/2
else
result:=arctan(x/(sqrt(1-x*x)));
arcsin:=(180/pi)*result;
textcolor(15);
end;


Hosted by uCoz