2.1.1.3 Latihan 3

Carilah nilai dari setiap fungsi di atas pada atau pada . (Petunjuk: Beri nama fungsi dan hitung nilainya menggunakan ekspresi like atau .) x=10,543t=10,543 g(x = 10.543)f(t = 10.543)

a.32.721, 34.721, 35.172 , 37.421, 37.721

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
slice_plot( 4 * 10.543 - 7 ~ x, domain(x = range(0, 10)))

  1. -0.83, -0.77 , -0.72, -0.68, 0.32, 0.42, 0.62
library(mosaicCalc)
slice_plot( cos(5 * 10.543) ~ x, domain(x = range(-1, 1)))

c.-0.83, -0.77, -0.72, -0.68, -0.62 , 0.42, 0.62

library(mosaicCalc)
slice_plot( cos(2 * 10.543) ~ t, domain(t = range(0,5) ))

  1. -2.5 , -1.5, -0.5, 0.5, 1.5, 2.5
slice_plot( sqrt(10.543) * cos(5 * 10.543) ~ t, domain(t = range(0, 5) ))

2.1.1.4 Latihan 4

slice_plot(2*x - 3 ~ x, domain(x = range(0, 5)))

slice_plot(t^2 ~ t, domain(t = range(-2, 2)))