Skip to content

Instantly share code, notes, and snippets.

@embg
Last active October 25, 2018 05:26
Show Gist options
  • Save embg/5eae5d160a7e342881d3d9d8ac9f5dd1 to your computer and use it in GitHub Desktop.
Save embg/5eae5d160a7e342881d3d9d8ac9f5dd1 to your computer and use it in GitHub Desktop.
TI-BASIC Modular Exponentiation (only works for 6-digit bases)
Disp "X^Y MOD Z"
Prompt X,Y,Z
If Z<=1
Then
Disp "ERROR"
Return
End
1->W
round(Z*fPart(X/Z),0)->X
While Y>0
ClrHome
Disp W
Disp "TIMES"
Disp X
Disp "TO THE"
Disp Y
Disp "=RESULT MOD"
Disp Z
Pause
If round(2*fPart(Y/2),0)=1
Then
round(Z*fPart((W*X)/Z),0)->W
End
iPart(Y/2)->Y
round(Z*fPart((X*X)/Z),0)->X
End
ClrHome
Disp "RESULT="
Disp W
Disp "MOD"
Disp Z
Pause
Stop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment