What are better alternative to this equation %Error = (|Exact-Measured|/Exact)*100?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite
1












I am trying to find the %Accuracy, in which I used this equation:
%Accuracy = 100-%Error.



So far, I have faced two problems with this equation:



  1. When the Exact Value is Zero, the fraction can’t be used -> Solved by adding the same value to both Exact and Measured, to avoid the null denominator


  2. When the Measured value is twice bigger or smaller, the %Accuracy value will be in negative values, In which I don't see the meaning behind it.


For example:



if:
Exact = 20;
Measured = 25;
%Accuracy = 75%;



But, when:
Exact = 20;
Measured = 45;
%Accuracy = -25%;



What is the meaning of -25%? and How to change the range of [0-100], to take the values that are outside of it accurately?







share|cite|improve this question


















  • 1




    According to the equation you wrote, for the second scenario, $%Error = dfrac120 times 100 = 5%$ and hence accuracy is $95%$.
    – Aniruddha Deshmukh
    Aug 22 at 8:34











  • Thanks for your answer, it was a mistake of mine. The question is edited now, as the thing I am looking for is how to know the meaning of measured numbers that are twice bigger than the exact measurement. Can you help me in answering this question? Appreciated :)
    – Tarek Albawab
    Aug 22 at 8:52














up vote
0
down vote

favorite
1












I am trying to find the %Accuracy, in which I used this equation:
%Accuracy = 100-%Error.



So far, I have faced two problems with this equation:



  1. When the Exact Value is Zero, the fraction can’t be used -> Solved by adding the same value to both Exact and Measured, to avoid the null denominator


  2. When the Measured value is twice bigger or smaller, the %Accuracy value will be in negative values, In which I don't see the meaning behind it.


For example:



if:
Exact = 20;
Measured = 25;
%Accuracy = 75%;



But, when:
Exact = 20;
Measured = 45;
%Accuracy = -25%;



What is the meaning of -25%? and How to change the range of [0-100], to take the values that are outside of it accurately?







share|cite|improve this question


















  • 1




    According to the equation you wrote, for the second scenario, $%Error = dfrac120 times 100 = 5%$ and hence accuracy is $95%$.
    – Aniruddha Deshmukh
    Aug 22 at 8:34











  • Thanks for your answer, it was a mistake of mine. The question is edited now, as the thing I am looking for is how to know the meaning of measured numbers that are twice bigger than the exact measurement. Can you help me in answering this question? Appreciated :)
    – Tarek Albawab
    Aug 22 at 8:52












up vote
0
down vote

favorite
1









up vote
0
down vote

favorite
1






1





I am trying to find the %Accuracy, in which I used this equation:
%Accuracy = 100-%Error.



So far, I have faced two problems with this equation:



  1. When the Exact Value is Zero, the fraction can’t be used -> Solved by adding the same value to both Exact and Measured, to avoid the null denominator


  2. When the Measured value is twice bigger or smaller, the %Accuracy value will be in negative values, In which I don't see the meaning behind it.


For example:



if:
Exact = 20;
Measured = 25;
%Accuracy = 75%;



But, when:
Exact = 20;
Measured = 45;
%Accuracy = -25%;



What is the meaning of -25%? and How to change the range of [0-100], to take the values that are outside of it accurately?







share|cite|improve this question














I am trying to find the %Accuracy, in which I used this equation:
%Accuracy = 100-%Error.



So far, I have faced two problems with this equation:



  1. When the Exact Value is Zero, the fraction can’t be used -> Solved by adding the same value to both Exact and Measured, to avoid the null denominator


  2. When the Measured value is twice bigger or smaller, the %Accuracy value will be in negative values, In which I don't see the meaning behind it.


For example:



if:
Exact = 20;
Measured = 25;
%Accuracy = 75%;



But, when:
Exact = 20;
Measured = 45;
%Accuracy = -25%;



What is the meaning of -25%? and How to change the range of [0-100], to take the values that are outside of it accurately?









share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited Aug 22 at 9:04

























asked Aug 22 at 8:28









Tarek Albawab

11




11







  • 1




    According to the equation you wrote, for the second scenario, $%Error = dfrac120 times 100 = 5%$ and hence accuracy is $95%$.
    – Aniruddha Deshmukh
    Aug 22 at 8:34











  • Thanks for your answer, it was a mistake of mine. The question is edited now, as the thing I am looking for is how to know the meaning of measured numbers that are twice bigger than the exact measurement. Can you help me in answering this question? Appreciated :)
    – Tarek Albawab
    Aug 22 at 8:52












  • 1




    According to the equation you wrote, for the second scenario, $%Error = dfrac120 times 100 = 5%$ and hence accuracy is $95%$.
    – Aniruddha Deshmukh
    Aug 22 at 8:34











  • Thanks for your answer, it was a mistake of mine. The question is edited now, as the thing I am looking for is how to know the meaning of measured numbers that are twice bigger than the exact measurement. Can you help me in answering this question? Appreciated :)
    – Tarek Albawab
    Aug 22 at 8:52







1




1




According to the equation you wrote, for the second scenario, $%Error = dfrac120 times 100 = 5%$ and hence accuracy is $95%$.
– Aniruddha Deshmukh
Aug 22 at 8:34





According to the equation you wrote, for the second scenario, $%Error = dfrac120 times 100 = 5%$ and hence accuracy is $95%$.
– Aniruddha Deshmukh
Aug 22 at 8:34













Thanks for your answer, it was a mistake of mine. The question is edited now, as the thing I am looking for is how to know the meaning of measured numbers that are twice bigger than the exact measurement. Can you help me in answering this question? Appreciated :)
– Tarek Albawab
Aug 22 at 8:52




Thanks for your answer, it was a mistake of mine. The question is edited now, as the thing I am looking for is how to know the meaning of measured numbers that are twice bigger than the exact measurement. Can you help me in answering this question? Appreciated :)
– Tarek Albawab
Aug 22 at 8:52










1 Answer
1






active

oldest

votes

















up vote
0
down vote













For your problem 1, if the exact answer is zero, then a miss is as good as a mile. That is, any measured value other than zero is equally wrong. For your problem 2, there is a better way. If x and y are two non-zero real numbers, then define



%Error := 100 * min(1, 2 * abs(x - y) / (abs(x) + abs(y))), while if only one number is zero the %Error := 100%, and if both are zero then %Error := 0%. With this definition %Error is always between 0% and 100%. Now your definition of %Accuracy = 100-%Error behaves as you would expect.



If this is too radical for you then just slightly adjust your original equation to %Error = min(1, |Exact - Measured| / Exact) * 100.






share|cite|improve this answer






















    Your Answer




    StackExchange.ifUsing("editor", function ()
    return StackExchange.using("mathjaxEditing", function ()
    StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
    StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
    );
    );
    , "mathjax-editing");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "69"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    noCode: true, onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );








     

    draft saved


    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2890791%2fwhat-are-better-alternative-to-this-equation-error-exact-measured-exact1%23new-answer', 'question_page');

    );

    Post as a guest






























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote













    For your problem 1, if the exact answer is zero, then a miss is as good as a mile. That is, any measured value other than zero is equally wrong. For your problem 2, there is a better way. If x and y are two non-zero real numbers, then define



    %Error := 100 * min(1, 2 * abs(x - y) / (abs(x) + abs(y))), while if only one number is zero the %Error := 100%, and if both are zero then %Error := 0%. With this definition %Error is always between 0% and 100%. Now your definition of %Accuracy = 100-%Error behaves as you would expect.



    If this is too radical for you then just slightly adjust your original equation to %Error = min(1, |Exact - Measured| / Exact) * 100.






    share|cite|improve this answer


























      up vote
      0
      down vote













      For your problem 1, if the exact answer is zero, then a miss is as good as a mile. That is, any measured value other than zero is equally wrong. For your problem 2, there is a better way. If x and y are two non-zero real numbers, then define



      %Error := 100 * min(1, 2 * abs(x - y) / (abs(x) + abs(y))), while if only one number is zero the %Error := 100%, and if both are zero then %Error := 0%. With this definition %Error is always between 0% and 100%. Now your definition of %Accuracy = 100-%Error behaves as you would expect.



      If this is too radical for you then just slightly adjust your original equation to %Error = min(1, |Exact - Measured| / Exact) * 100.






      share|cite|improve this answer
























        up vote
        0
        down vote










        up vote
        0
        down vote









        For your problem 1, if the exact answer is zero, then a miss is as good as a mile. That is, any measured value other than zero is equally wrong. For your problem 2, there is a better way. If x and y are two non-zero real numbers, then define



        %Error := 100 * min(1, 2 * abs(x - y) / (abs(x) + abs(y))), while if only one number is zero the %Error := 100%, and if both are zero then %Error := 0%. With this definition %Error is always between 0% and 100%. Now your definition of %Accuracy = 100-%Error behaves as you would expect.



        If this is too radical for you then just slightly adjust your original equation to %Error = min(1, |Exact - Measured| / Exact) * 100.






        share|cite|improve this answer














        For your problem 1, if the exact answer is zero, then a miss is as good as a mile. That is, any measured value other than zero is equally wrong. For your problem 2, there is a better way. If x and y are two non-zero real numbers, then define



        %Error := 100 * min(1, 2 * abs(x - y) / (abs(x) + abs(y))), while if only one number is zero the %Error := 100%, and if both are zero then %Error := 0%. With this definition %Error is always between 0% and 100%. Now your definition of %Accuracy = 100-%Error behaves as you would expect.



        If this is too radical for you then just slightly adjust your original equation to %Error = min(1, |Exact - Measured| / Exact) * 100.







        share|cite|improve this answer














        share|cite|improve this answer



        share|cite|improve this answer








        edited Aug 22 at 19:59

























        answered Aug 22 at 19:49









        Somos

        11.8k11033




        11.8k11033






















             

            draft saved


            draft discarded


























             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2890791%2fwhat-are-better-alternative-to-this-equation-error-exact-measured-exact1%23new-answer', 'question_page');

            );

            Post as a guest













































































            這個網誌中的熱門文章

            How to combine Bézier curves to a surface?

            Mutual Information Always Non-negative

            Why am i infinitely getting the same tweet with the Twitter Search API?