Plot a function involving lowest terms
Hi,
How do I use sage to plot the following function?
f(x)=[0,x irrational, 0<x<11q,x=pq in lowest term, 0<x<1.
I actually wrote a function that would generate the following sequence: 1n,…,n−1n for a given n.
Then I created a list of lists that contains the above sequence for each n. After flattening that list, I call the set function on it to remove duplicates. Then I use that to creat a list (x,y) tuple to plot the function using scatter plot.
I was wondering if there is a simpler way of doing this.