HP Forums

Full Version: New Casio fx-9860 GIII model
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4
Hello.
Apparently, Casio will launch a new graphing calculator model for this year 2020, the FX-9860GIII.

https://tiplanet.org/forum/portal.php

https://fccid.io/RR-CAI-FX-9860GIII
CASIO releases 95% of different garbage after each successful model. This applies to calculators, PDAs and various organizers. At the moment, CASIO has nothing better than 9860gii-2 among the classic graphic calculators for engineers. Obviously, following several modifications can not be taken into account.
(01-09-2020 04:34 PM)Coco Wrote: [ -> ]Hello.
Apparently, Casio will launch a new graphing calculator model for this year 2020, the FX-9860GIII.

https://tiplanet.org/forum/portal.php

https://fccid.io/RR-CAI-FX-9860GIII

More details and a picture on this page: https://www.studentcalculators.co.uk/aca...ators.html

Nigel (UK)
Functions include:
• Vector calculation (products, angle, magnitude)
• Geometry drawing
• Spreadsheet capability
• Statistical modelling
• Python programming language
• Examination mode


So, this means the Python has arrived for 9860s?!?
The CPU is same as older models?!

UPDATE: As I can see, this is same model as Graph 35+E II
A promo video. Python is available on this model and the brand new model on eBay affordable (fortunately this is available in Europe Smile and no need to pay too much for shipment):




Csaba
(01-09-2020 10:53 PM)Nigel (UK) Wrote: [ -> ]
(01-09-2020 04:34 PM)Coco Wrote: [ -> ]Hello.
Apparently, Casio will launch a new graphing calculator model for this year 2020, the FX-9860GIII.

https://tiplanet.org/forum/portal.php

https://fccid.io/RR-CAI-FX-9860GIII

More details and a picture on this page: https://www.studentcalculators.co.uk/aca...ators.html

Nigel (UK)

It looks like they altered the colour scheme a bit (white function keys instead of grey, white back instead of blue). I hope they kept the snazzy rosette moulding around the reset hole (just for aesthetic reasons). I wonder if they removed the exam mode LED?
I am hoping that:

1. Python will become available for the fx-9860gII as well and

2. The next Python update for both the fx-9860gIII and fx-CG 50 will include at least graphics, statistics, and the ability to define user functions. Currently the fx-CG 50's Python mode is stripped down.
(02-01-2020 09:26 PM)Eddie W. Shore Wrote: [ -> ]I am hoping that:

1. Python will become available for the fx-9860gII as well and

2. The next Python update for both the fx-9860gIII and fx-CG 50 will include at least graphics, statistics, and the ability to define user functions. Currently the fx-CG 50's Python mode is stripped down.

1.) As I guess, the fx-9860GII and Graph 35+E is same calculator, so try to update and send us the result! Link: Python update for CASIO Graph 35+E II
2.) In April the update will be available: Graphics with Python on CASIO Graph 35+E II

Csaba
(02-01-2020 09:26 PM)Eddie W. Shore Wrote: [ -> ]I am hoping that:

1. Python will become available for the fx-9860gII as well and

2. The next Python update for both the fx-9860gIII and fx-CG 50 will include at least graphics, statistics, and the ability to define user functions. Currently the fx-CG 50's Python mode is stripped down.
Very good news is to include Python in the Casio fx 9860gii calculator Wink
(02-02-2020 04:15 PM)Coco Wrote: [ -> ]
(02-01-2020 09:26 PM)Eddie W. Shore Wrote: [ -> ]I am hoping that:

1. Python will become available for the fx-9860gII as well and

2. The next Python update for both the fx-9860gIII and fx-CG 50 will include at least graphics, statistics, and the ability to define user functions. Currently the fx-CG 50's Python mode is stripped down.
Very good news is to include Python in the Casio fx 9860gii calculator Wink
Coco: check those links in my comment... If you have a 9860GII, try to update with the Graph 35+E II ROM.
Eddie: the user definied functions are available currently: Sample 3, I do not found information about the length of the name and the parameters and the type of return values.

Csaba
(02-02-2020 03:56 PM)Csaba Tizedes Wrote: [ -> ]1.) ... try to update and send us the result! Link: Python update for CASIO Graph 35+E II

Failed, of course... and nothing changed Big Grin

Cs.
(02-01-2020 09:26 PM)Eddie W. Shore Wrote: [ -> ]I am hoping that:

1. Python will become available for the fx-9860gII as well and

2. The next Python update for both the fx-9860gIII and fx-CG 50 will include at least graphics, statistics, and the ability to define user functions. Currently the fx-CG 50's Python mode is stripped down.

Now that the gIII has been officially announced we can see that there's no support for a graphics library yet. Sad We can always hope, though. In the mean time, I use Numworks which has a pretty nice Kandinsky library although it has no support for drawing lines:

Code:
from math import *
from time import *
from kandinsky import *
def hat():
  t0 = monotonic()
  fill_rect(0,0,320,240,(0,0,0))
  p=160; q=90
  xp=144; xr=1.5*3.1415927
  yp=56; yr=1; zp=64
  xf=xr/xp; yf=yp/yr; zf=xr/zp
  for zi in range(-q,q):
    if zi>=-zp and zi<=zp:
      zt=zi*xp/zp; zz=zi
      xl=int(.5+sqrt(xp*xp-zt*zt))
      for xi in range(-xl,xl+1):
        xt=sqrt(xi*xi+zt*zt)*xf; xx=xi
        yy=(sin(xt)+.4*sin(3*xt))*yf
        x1=int(xx+zz+p)
        y1=200-int(yy-zz+q)
        set_pixel(x1,y1,(0,255,0))
        if y1!=0:
          fill_rect(x1,y1+1,1,240-y1,(0,0,0))
  print(monotonic() - t0,"seconds")
Wonder if full complex number support will appear down the road (trig for example), factorization of numbers, solve or integrate for max or min of multiple functions!
(03-06-2020 03:22 PM)lrdheat Wrote: [ -> ]Wonder if full complex number support will appear down the road (trig for example), factorization of numbers, solve or integrate for max or min of multiple functions!

I second your notion and add eigenvalues and eigenvectors.
(03-06-2020 03:22 PM)lrdheat Wrote: [ -> ]Wonder if full complex number support will appear down the road (trig for example), factorization of numbers, solve or integrate for max or min of multiple functions!

Given that their higher end fx-CG50 doesn't have complex number support for any trig functions, I wouldn't count on it.
(03-06-2020 03:22 PM)lrdheat Wrote: [ -> ]Wonder if full complex number support will appear down the road (trig for example), factorization of numbers, solve or integrate for max or min of multiple functions!

+1. I wonder if Casio will ever release a true CAS model.
(03-08-2020 04:07 AM)Dands Wrote: [ -> ]
(03-06-2020 03:22 PM)lrdheat Wrote: [ -> ]Wonder if full complex number support will appear down the road (trig for example), factorization of numbers, solve or integrate for max or min of multiple functions!

+1. I wonder if Casio will ever release a true CAS model.

Well... technically the fx-CP400 classifies as a CAS model, just not the type of calculator that we are used to. Big on screen, short on buttons.
(03-06-2020 03:22 PM)lrdheat Wrote: [ -> ]Wonder if full complex number support will appear down the road (trig for example), factorization of numbers, solve or integrate for max or min of multiple functions!

Here in Germany the 9860GIII will be available in short. Specifications have already been published.
The 9860GIII is compared to the CG50 simply cheaper and less capable/powerfull.
A smarter design (at least for me) and now with Python. That is a "little" bit[attachment=8141] disappointing.

The Manuals:
German
https://support.casio.com/de/manual/004/...oft_DE.pdf
English
https://support.casio.com/en/manual/004/...oft_EN.pdf

Quick & short cpmparison:
CG50-vs-GIII_Merged.jpg

Thomas
There is one error in the comparison sheet- fx-cg50 is capable to perform vector calculations
The one thing I like on these CASIO models is the graphing analysis...so easy to find points of interest, and to do further analysis work with the points of interest within a graph’s domain view, even if the “y” value for the point of interest lies outside of the view...
Pages: 1 2 3 4
Reference URL's