File:Graph of x squared undefined at x equals 2.svg

Summary

Description
English: Graph of the discontinuous function y = x^2, undefined at x = 2. Vector version of this figure.
Date
Source Own work
Author Ben Moore

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Category:CC-BY-SA-3.0#Graph%20of%20x%20squared%20undefined%20at%20x%20equals%202.svg
Category:Self-published work

Code

Generated with the following R code:

x <- seq(-6,6,by=.1)
y <- x^2

svg("figs/discontinuous_fx.svg", 5,5)
par(mgp=c(2,.6,0), mar=c(3,3,3,1))
plot(x, y, type="l", xlab="", ylab="", col="blue")
grid(col="grey60")
points(2, 2^2, bg="white", col="blue", pch=21)
dev.off()
Category:SVG line charts Category:Square function
Category:CC-BY-SA-3.0 Category:Pages using deprecated source tags Category:SVG line charts Category:Self-published work Category:Square function