GeoGebra

Insert Command

Jump to: navigation, search
Command Descriptions
A

Angle AffineRatio AngleBisector Append Arc Area Asymptote Axes AxisStepX AxisStepY

B

BarChart BinomialCoefficient BoxPlot

C

CellRange Center Centroid Circle CircularArc CircularSector CircumcircularArc CircumcircularSector Circumference Column ColumnName Conic ConjugateDiameter ConstructionStep Corner CorrelationCoefficient CountIf Covariance CrossRatio Curvature CurvatureVector Curve

D

Delete Derivative Determinant Dilate Direction Directrix Distance Div

E

Element Ellipse Expand Extremum

F

Factor First FitExp FitLine FitLineX FitLog FitLogistic FitPoly FitPow FitSin Focus FormulaText FractionText Function

G

GCD

H

Histogram Hyperbola

I

If InflectionPoint Insert Integral Intersect Intersection InverseNormal Invert IsDefined IsInteger Iteration IterationList

J

Join

K

KeepIf

L

Last LCM Length LetterToUnicode Line LinearEccentricity Locus LowerSum

M

MajorAxis Max Mean MeanX MeanY Median Midpoint Min MinorAxis Mod Mode

N

Name Normal

O

Object OsculatingCircle

P

Parabola Parameter Perimeter PerpendicularBisector PerpendicularLine PerpendicularVector Point Polar Polygon Polynomial Product

Q

Q1 Q3

R

Radius RandomBetween RandomBinomial RandomNormal RandomPoisson Ray Reflect Relation RemoveUndefined Reverse Root Rotate

S

Row SD Sector Segment Semicircle SemiMajorAxisLength SemiMinorAxisLength Sequence SigmaXX SigmaXY SigmaYY Simplify Slope Sort Sum Sxx Sxy Syy

T

TableText Take Tangent TaylorPolynomial Text TextToUnicode Translate Transpose TrapezoidalSum

U

UnicodeToLetter UnicodeToText Union UnitPerpendicularVector UnitVector UpperSum

V

Variance Vector Vertex

Syntax

  • Insert[object O, list L, number N]
  • Insert[list O, list L, number N]

Action

Inserts the object in the list at the given position N. If object 0 is a list, all objects from this list are inserted. If the position is a negative number, then the position is counted from the right.

Examples

  • Insert[x^2, {1, 2, 3, 4, 5}, 3] places x2 at the third position and gives you the list {1, 2, x2, 3, 4, 5}.
  • Insert[x^2, {1, 2, 3, 4, 5}, -1] places x2 at the end of the list and gives you the list {1, 2, 3, 4, 5, x2}.
  • Insert[{11, 12}, {1, 2, 3, 4, 5}, 3] places the elements of list1 at the third (and following) position(s) of list2 and gives you the list {1, 2, 11, 12, 3, 4, 5}.
  • Insert[{11, 12}, {1, 2, 3, 4, 5}, -2] places the elements of list1 at the end of list2 before its last element and gives you {1, 2, 3, 4, 11, 12, 5}.

See also

  • Append
  • Join (Join[list1,list2] is a shorthand for Insert[list2,list1,1])