GET TUTORING NEAR ME!

By providing your phone number, you consent to receive text messages from Club Z! for purposes related to our services. Message frequency may vary. Message and Data Rates may apply. Reply HELP for help or STOP to unsubscribe. See our Privacy Policy and our Terms and Conditions page

    Home / Get Math Help

    Suborder Function

    Definition

    The multiplicative suborder of a number a (mod n) is the least exponent e>0 such that a^e congruent ± 1 (mod n), or zero if no such e exists. An e always exists if GCD(a, n) = 1 and n>1. This function is denoted sord_n(a) and can be implemented in the Wolfram Language as: Suborder[a_, n_] := If[n>1&& GCD[a, n] == 1, Min[MultiplicativeOrder[a, n, {-1, 1}]], 0 ]