library(mosaicCalc)
## Loading required package: mosaicCore
## Loading required package: Deriv
## Loading required package: Ryacas
## 
## Attaching package: 'Ryacas'
## The following object is masked from 'package:stats':
## 
##     integrate
## The following objects are masked from 'package:base':
## 
##     %*%, diag, diag<-, lower.tri, upper.tri
## Registered S3 method overwritten by 'mosaic':
##   method                           from   
##   fortify.SpatialPolygonsDataFrame ggplot2
## 
## Attaching package: 'mosaicCalc'
## The following object is masked from 'package:stats':
## 
##     D

2.1.1.1 Latihan 1

x <- 10
slice_plot(A * x ^  2 ~ A, domain(A = range(-2,  3)))

2.1.1.2 Latihan 2

  1. 4x−7 di jendela dari 0 hingga 10.x_ x
slice_plot( 4 * x - 7 ~ x, domain(x = range(0, 10) ))

  1. Karena 5x di jendela dari ke .x11−11
slice_plot( cos(5 * x) ~ x, domain(x = range(-1, 1)))

  1. karena 2t di jendela dari 0 hingga 5.t
slice_plot( cos(2 * t) ~ t, domain(t = range(0,5) ))

  1. √tkarena5t di jendela dari 0 sampai 5. (Petunjuk: adalah .)t√(t)sqrt(t)
slice_plot( sqrt(t) * cos(5 * t) ~ t, domain(t = range(0, 5) ))