Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
Details of the Predefined Rounding Rules
Description
The ScientificErrorAnalysis package has predefined rounding rules that are used by the `combine/errors` and ApplyRule functions. To define custom rules, use the AddRule function.
The following rounding rules are predefined in ScientificErrorAnalysis.
digits
This rule does not round the central value or uncertainty of a quantity-with-error. Use of this rule allows error analysis calculations to proceed at the current setting of Digits.
The rule digits is the initially defined default rule in ScientificErrorAnalysis. To set the default rule, use the UseRule function.
round[n]
This rule rounds the uncertainty of a quantity-with-error to n significant figures (if present), and rounds the central value to match (if necessary), that is, such that the place value of the least significant figure of the central value is the same as (or less than) that of the uncertainty.
with(ScientificErrorAnalysis):
e1 := Quantity( 1.2088, 0.563 );
ApplyRule( e1, round[2] );
round3g[n]
This rule rounds the uncertainty of a quantity-with-error to n or n+1 significant figures (if present), and rounds the central value to match (if necessary), that is, such that the place value of the least significant figure of the central value is the same as (or less than) that of the uncertainty.
If the most significant figure of the given uncertainty is three or greater, the uncertainty is rounded to n figures. If the most significant figure is less than three, the uncertainty is rounded to n+1 figures.
ApplyRule( e1, round3g[1] );
e4 := Quantity( 1.2088, 0.263 );
ApplyRule( e4, round3g[1] );
round_cv
This rule does not modify the uncertainty of a quantity-with-error, but rounds the central value to match, that is, such that the place value of the least significant figure of the central value is the same as (or less than) that of the uncertainty.
ApplyRule( e1, round_cv );
implicitize
This rule rounds the central value of a quantity-with-error to the significant figures that remain unchanged over the interval of the central value plus or minus the uncertainty. The uncertainty is set to zero. In other words, the central value is rounded to its reliable figures, assuming the usual 68 percent confidence interval and normal distribution.
ApplyRule( e1, implicitize );
In the above example, ApplyRule constructed a new Quantity object with zero uncertainty, which automatically simplifies to the central value.
See Also
combine/errors, Digits, ScientificErrorAnalysis, ScientificErrorAnalysis[AddRule], ScientificErrorAnalysis[ApplyRule], ScientificErrorAnalysis[GetRules], ScientificErrorAnalysis[HasRule], ScientificErrorAnalysis[Quantity], ScientificErrorAnalysis[UseRule], ScientificErrorAnalysis[UsingRule]
Download Help Document