Skip to main content

How to find Pearson's r and Spearman's rank correlation on the Casio fx-CG50

Pearson's product-moment correlation coefficient and Spearman's rank coefficient (by ranking, then r). Exact keystrokes for the fx-CG50 first, then the other calculators, a worked example you can check your answers against, the mistakes that cost marks, and the same thing in Desmos.

Calculators: Casio fx-CG50 (OS 3.80) · TI-84 Plus CE (OS 5.8.x) · TI-Nspire CX II (OS 6.x) · Casio fx-991EX ClassWiz (the fixed ROM) · Casio fx-991CW ClassWiz (the fixed ROM). Checked September 2026.

When you need it

The product-moment correlation coefficient (PMCC) and its hypothesis test in A Level statistics; Spearman's rank in some Further Statistics options and IAL S3. Both come from the same regression screen.

Practise it: Hypothesis testing · Statistical sampling and data.

Keystrokes on your calculator

Pick your calculator: the page remembers it next time.

Correlation r and Spearman's rank on the Casio fx-CG50

Written for OS 3.80 (menus unchanged from OS 3.60 onwards as far as we can tell). Casio fx-CG50: graphic (GDC).

  1. MENU 2 (STATISTICS). Type the x values into List 1 and the y values into List 2, pressing EXE after each. (Clear an old list first: highlight the list, F6 (▷) F4 (DELETE-ALL) F1 (Yes).)
  2. Pearson's r: F2 (CALC) F3 (REG) F1 (X) F1 (ax+b). Read r.
  3. Spearman: type the ranks of x into List 3 and the ranks of y into List 4 (rank each list separately, smallest = 1; tied values share the mean rank).
  4. F2 (CALC) F6 (SET): XList = List3, YList = List4, EXIT, then F3 (REG) F1 F1 again. This r is rs.
LinearReg(ax+b)a =…b =…r =0.95549211r²=0.91296517COPYDRAW
Schematic fx-CG50 screen (not a photo); the bottom row is what F1–F6 do here.
  • Sorting helps you rank: F1 (TOOL) → SORT-ASC in the list editor, but sort a copy, not your original lists, or the x–y pairs break.
  • Set the SET menu back to List1/List2 afterwards.

Worked example

x: 12, 15, 17, 20, 23, 25, 28, 30. y: 40, 44, 43, 52, 55, 51, 60, 63. Find r and Spearman's rs.

Answers (checked with Python)

r = 0.955492. Ranks of x: 1–8; ranks of y: 1, 3, 2, 5, 6, 4, 7, 8. r of the ranks gives rs = 0.905.

Common calculator mistakes

Do it in Desmos

Not in the exam. Desmos is not allowed in A Level exams. Use it to learn, to check a calculator answer, and to see what a function or data set looks like.

  1. Make lists X = [12, 15, …] and Y = [40, 44, …].
  2. corr(X, Y) gives Pearson's r; spearman(X, Y) gives Spearman's rs directly (Desmos ranks and handles ties for you).
  3. Plot (X, Y) to see the scatter diagram.

The interactive graph loads here when you scroll to it.

Or open desmos.com/calculator and type:

  • X=[12,15,17,20,23,25,28,30]
  • Y=[40,44,43,52,55,51,60,63]
  • (X,Y)
  • corr(X,Y)
  • spearman(X,Y)

More calculator skills

Sources

Menu names are taken from each manufacturer's manual for the OS versions shown. Menus can move slightly between OS updates: if a screen looks different on yours, the manual for your version is the reference, and please tell us so we can update this page. Worked-example answers were recomputed independently in Python.