hard inequalities
by pennypc123456789, Apr 30, 2025, 12:12 AM
Good divisors and special numbers.
by Nuran2010, Apr 29, 2025, 4:52 PM








inequality problem
by pennypc123456789, Apr 29, 2025, 2:42 PM
Inspired by old results
by sqing, Apr 29, 2025, 12:29 PM
Let
Prove that







This post has been edited 1 time. Last edited by sqing, Yesterday at 12:49 PM
hard problem
by Cobedangiu, Apr 21, 2025, 1:51 PM
Counting graph theory
by MathSaiyan, Mar 17, 2025, 2:00 PM
Let
and
be positive integers. For a connected simple graph
on
vertices and
edges, we consider the number
of orientations of (all of) its edges so that, in the resulting directed graph, every vertex has even outdegree.
Show that
only depends on
and
, and determine its value.






Show that



Beizer curves
by sonone, Apr 18, 2023, 2:20 PM
Beizer curves
Using complex numbers to represent coordinates, I made a simple program to draw a beizer curve:
I coded this on my CASIO fx-9860G Slim, but it should work on all other CASIO fx with CASIO-BASIC.
Using complex numbers to represent coordinates, I made a simple program to draw a beizer curve:
Cls
ViewWindow -6.3,6.3,1,-3.1,3.1,1
{0,2-2i,3+3i}->List 1 'curve coordinates
0.05->A 'step size
Plot ReP List 1[1],ImP List 1[1]
For A->I To 1 Step A
List 1->List 2
Dim List 1->N
While N>1
Dsz N
For 1->J To N
List 2[J]+I*(List 2[J+1]-List 2[J])->List 2[J]
Next
WhileEnd
Plot ReP List 2[1],ImP List 2[1]
Line
Next
I coded this on my CASIO fx-9860G Slim, but it should work on all other CASIO fx with CASIO-BASIC.
Direction field generator for TI 84 plus CE python
by sonone, Jan 30, 2023, 3:12 PM
Have you every got the feeling, when you are taking ordinary differential equations, and they ask you to use technology to graph the direction field for some differential equation
? Did you ever wish that your graphing calculator could be that "technology"? That is how I felt, and after numerous versions I have made a beautiful and simplistic direction field program in python, designed for a TI 84 plus CE with the python app.
Here are the pros and cons of the python program:
Pros:
To use the program you need to first specify the function in the commented section of the code. When you run it it will ask you for the dimensions of the screen you want to graph and for the spacing of the lines. Then the program will prompt you too trace approximate solution. If you enter 0 (no), it will draw the direction field. If you enter 1 (yes) it will draw the direction field AND the traced line.
installation instructions

Here are the pros and cons of the python program:
Pros:
- Thin lines make slopes easy to estimate
- Features colored lines (negative slopes= blue, positive slopes = red)
- Will trace the approximate solution from a point with a custom step interval
- You need to update the function in the code itself
To use the program you need to first specify the function in the commented section of the code. When you run it it will ask you for the dimensions of the screen you want to graph and for the spacing of the lines. Then the program will prompt you too trace approximate solution. If you enter 0 (no), it will draw the direction field. If you enter 1 (yes) it will draw the direction field AND the traced line.
installation instructions
Step 1: Get the "TI Connect CE" app from the texas instruments website
Step 2: If you have the python edition of the TI 84 plus CE, skip step 3
Step 3: Download and add python app to calculator from the texas instruments website
Step 4: Drag attached file to calculator
Step 2: If you have the python edition of the TI 84 plus CE, skip step 3
Step 3: Download and add python app to calculator from the texas instruments website
Step 4: Drag attached file to calculator
Attachments:
This post has been edited 1 time. Last edited by sonone, Jan 31, 2023, 8:22 PM
Reason: Added file
Reason: Added file
AoPS avatar drawer
by sonone, Aug 5, 2022, 9:14 PM
AoPS avatar drawer
I made a program that draws an AoPS avatar, but it can do more! If desired, one can create custom avatars of most any size (I doubt some of the larger sizes render well at all on a 126x62 resolution display). It only supports plane partitions (i.e. a normal avatars), otherwise it will look like scribble scrabble.
The height matrix give information on high each "pillar" is. The AoPS logo has a height matrix of
If you so desire to change the size, say to a 5x5x5, go to the beginning of the code and change S to 5 (default is 3). Then edit the assignment for MAT A to a 5x5 height matrix. Then run the program and it should render. If it looks strange, check the height matrix to make sure that the values are correct.
The program is called AOPSAVTR and takes up 492 bytes of memory. The .g1m file is attached below. I had to attach it as a .zip file since AoPS doesn't recognize.g1m files.
I made a program that draws an AoPS avatar, but it can do more! If desired, one can create custom avatars of most any size (I doubt some of the larger sizes render well at all on a 126x62 resolution display). It only supports plane partitions (i.e. a normal avatars), otherwise it will look like scribble scrabble.
The height matrix give information on high each "pillar" is. The AoPS logo has a height matrix of
[[3,3,3][3,2,1][3,1,1]]
The first row is the back right, the columns counting up to the right.If you so desire to change the size, say to a 5x5x5, go to the beginning of the code and change S to 5 (default is 3). Then edit the assignment for MAT A to a 5x5 height matrix. Then run the program and it should render. If it looks strange, check the height matrix to make sure that the values are correct.
The program is called AOPSAVTR and takes up 492 bytes of memory. The .g1m file is attached below. I had to attach it as a .zip file since AoPS doesn't recognize.g1m files.
Attachments:
This post has been edited 1 time. Last edited by sonone, Aug 5, 2022, 9:26 PM
REVIVAL: programming graphing calculators
by sonone, Feb 18, 2022, 10:47 PM
REVIVAL
The reason I haven't been posting lately is mainly I had a lot of school, but also that when I wasn't doing school I was programming my graphing calculator(s). I have become pretty comfortable with CASIO BASIC have made programs ranging from the quadratic formula to a sub-sinking game.
I will be posting about some of the programs I have created, and some little programming tips for CASIO calculators.
I have a CASIO fx-9750GII and an fx-9860G Slim that I code with BASIC, and a TI Nspire CX II CAS, which supports TI BASIC, Python, and lua scripting (I haven't learned lua, yet). The majority of my posts from here on out will be on CASIO programming, but I might occasionally post a little thing about python or TI BASIC.
Lastly, before I finish, I will give some teasers on what programs I have already completed:
The reason I haven't been posting lately is mainly I had a lot of school, but also that when I wasn't doing school I was programming my graphing calculator(s). I have become pretty comfortable with CASIO BASIC have made programs ranging from the quadratic formula to a sub-sinking game.
I will be posting about some of the programs I have created, and some little programming tips for CASIO calculators.
I have a CASIO fx-9750GII and an fx-9860G Slim that I code with BASIC, and a TI Nspire CX II CAS, which supports TI BASIC, Python, and lua scripting (I haven't learned lua, yet). The majority of my posts from here on out will be on CASIO programming, but I might occasionally post a little thing about python or TI BASIC.
Lastly, before I finish, I will give some teasers on what programs I have already completed:
- Drawing a direction field for a two-variable function
- Using Euler's method to approximate the value of a first order DE
- Converting a matrix to its reduced row echelon form
- My own version of Subway-Surfers
- Day-of-the-week finder for date in Gregorian calendar
- Radical simplifier
- Quadratic formula
- Submarine sinking game (ballistic missile game)
- And more...
\sqrt{(1^2+2^2+...+n^2)/n}$ is an integer.
by parmenides51, Mar 26, 2020, 5:08 PM
Find the smallest positive integer
so that
is an integer.


This post has been edited 1 time. Last edited by parmenides51, Mar 28, 2020, 3:42 AM
Intersection of circumcircles of MNP and BOC
by Djile, Apr 8, 2013, 3:13 PM
Let
,
and
be midpoints of sides
and
, respectively, and let
be circumcenter of acute-angled triangle
. Circumcircles of triangles
and
intersect at two different points
and
inside of triangle
. Prove that ![\[\angle BAX=\angle CAY.\]](//latex.artofproblemsolving.com/3/9/9/39910fdd000cbed820b33ac08a8200ca06ed8193.png)












![\[\angle BAX=\angle CAY.\]](http://latex.artofproblemsolving.com/3/9/9/39910fdd000cbed820b33ac08a8200ca06ed8193.png)
Archives
















Shouts
Submit
98 shouts
Contributors
Tags
About Owner
- Posts: 2106
- Joined: Aug 20, 2016
Blog Stats
- Blog created: Mar 28, 2020
- Total entries: 61
- Total visits: 4961
- Total comments: 146
Search Blog