Update 00087_math_functions.sql

This commit is contained in:
alexey-milovidov 2020-11-05 15:36:25 +03:00 committed by GitHub
parent d2fcd8548e
commit fcb61251a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -121,7 +121,7 @@ select sum(abs(asinh(sinh(x)) - x) < 1e-9) / count() from system.one array join
select acosh(1) = 0;
select acosh(2) = acosh(-2);
select abs(acosh(2) - ln(2 + sqrt(3))) < 1e-9;
select (acosh(cosh(2)) - 2) < 1e-9
select (acosh(cosh(2)) - 2) < 1e-9;
select sum(abs(acosh(cosh(x)) - x) < 1e-9) / count() from system.one array join range(1, 1001) as x;
select atanh(0) = 0;