You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppose one constructs an e.g. linear function f:x\mapsto ax+b with a, b of type REAL and wants to approximate f on a real interval [l,u] up to precision p as another linear function g:x\mapsto cx+d, that is, c,d should now be of type DYADIC with the property
forall x in [l,u] : |f(x) - g(x)| < 2^p
This could be generalized to polynomials or rational functions and may be a first step towards piecewise approximations on a larger domain.
The text was updated successfully, but these errors were encountered:
Suppose one constructs an e.g. linear function
f:x\mapsto ax+b
witha
,b
of typeREAL
and wants to approximatef
on a real interval[l,u]
up to precisionp
as another linear functiong:x\mapsto cx+d
, that is,c
,d
should now be of typeDYADIC
with the propertyThis could be generalized to polynomials or rational functions and may be a first step towards piecewise approximations on a larger domain.
The text was updated successfully, but these errors were encountered: