I'm not sure if it's 2600 or 2500
in Pre-Algebra Answers by

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please log in or register.

3 Answers

17* 3 = 51

so (51-1)^2 = 50^2 = 2500

Btw, PEDMAS did apply in this rule, just there is hidden brackets that you have to observe in your question.
by Level 8 User (30.1k points)

Since 1 is subtracted before squaring the order of operations would be indicated by:

(51-1)²=2500

by Top Rated User (1.2m points)

2500


51 isn't prime because 51 = 17x3

then

(51-1)^2 = 2500

 51 - 1 = 50 and 50^2 = 2500


static bool Prime (int a)
{
    for (int n = 2; n <= a / 2; n++)
    {
        if (a % n == 0)
            return false;
    }
    return true;
}


int a = 51;

 

if (!Prime(a)) //True

    a = Math.Pow(a -1, 2)

//a == 2500

by Level 3 User (2.6k points)

Related questions

1 answer
asked Jun 12, 2012 in Algebra 1 Answers by anonymous | 1.8k views
2 answers
asked Mar 2, 2016 in Algebra 2 Answers by Mathical Level 10 User (57.4k points) | 1.3k views
1 answer
asked Aug 22, 2012 in Algebra 1 Answers by anonymous | 904 views
Welcome to MathHomeworkAnswers.org, where students, teachers and math enthusiasts can ask and answer any math question. Get help and answers to any math problem including algebra, trigonometry, geometry, calculus, trigonometry, fractions, solving expression, simplifying expressions and more. Get answers to math questions. Help is always 100% free!
87,516 questions
100,279 answers
2,420 comments
732,351 users