###############################
# By plotting this with really low values, we can see a tendency emerge. Specifically, the global behavior
# tends toward a constant value of 2.
# Now, let's take the equation analysis, and we see that the dominant terms for the numerator and denominator
# are 2(x^6)/x^6, which results in a constant value of 2. See plot below.
###############################
f(x) = (2*x^6 + 50*x^2)/(x^6+3*x^2+1) # the function f(x)
fig1 = plot(f,(x,-1000,1000),rgbcolor='green')
show(fig1,figsize=[8,4],fontsize=8) # show() with some argument.
##############################
# Therefore, the limit in both the negative and positive infinite direction is equal to 2.
##############################