Class: CAS::Tan

Inherits:
Op
  • Object
show all
Defined in:
lib/functions/fnc-trig.rb

Overview

Representation for the ‘tan(x)` function. It is implemented as a `CAS::Op`.

Instance Attribute Summary

Attributes inherited from Op

#x

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Op

#!=, #*, #**, #+, #-, #-@, #/, #==, #args, #as_proc, #depend?, #dot_graph, #equal, #greater, #greater_equal, #initialize, #inspect, #limit, numeric_to_const, simplify_dict, #simplify_dictionary, #smaller, #smaller_equal, #subs, #to_c_lib

Constructor Details

This class inherits a constructor from CAS::Op

Class Method Details

.init_simplify_dictObject



407
408
409
410
411
412
413
# File 'lib/functions/fnc-trig.rb', line 407

def self.init_simplify_dict
  @simplify_dict = {
    CAS::Zero => CAS::Zero,
    CAS::Pi => CAS::Zero,
    CAS::Pi/2 => CAS::Infinity
  }
end

Instance Method Details

#call(f) ⇒ Object

Call resolves the operation tree in a ‘Numeric` (if `Fixnum`) or `Float` (depends upon promotions). As input, it requires an hash with `CAS::Variable` or `CAS::Variable#name` as keys, and a `Numeric` as a value

* **argument**: `Hash` with feed dictionary
* **returns**: `Numeric`


384
385
386
387
# File 'lib/functions/fnc-trig.rb', line 384

def call(f)
  CAS::Help.assert(f, Hash)
  Math::tan(@x.call(f))
end

#diff(v) ⇒ Object

Return the derivative of the ‘tan(x)` function using the chain rule. The input is a `CAS::Op` because it can handle derivatives with respect to functions. E.g.:

“‘

d              f'(x)

– sin(f(x)) = ——- dx cos²(x) “‘

* **argument**: `CAS::Op` object of the derivative
* **returns**: `CAS::Op` a derivated object, or `CAS::Zero` for constants


369
370
371
372
373
374
375
# File 'lib/functions/fnc-trig.rb', line 369

def diff(v)
  if @x.depend? v
    return @x.diff(v) * CAS.pow(CAS::One/CAS.cos(@x), CAS::Two)
  else
    return CAS::Zero
  end
end

#simplifyObject

Simplification callback. It simplify the subgraph of each node until all possible simplification are performed (thus the execution time is not deterministic).

* **returns**: `CAS::Op` simplified version


401
402
403
404
405
# File 'lib/functions/fnc-trig.rb', line 401

def simplify
  super
  return @x.x if @x.is_a? CAS::Atan
  return self.simplify_dictionary
end

#to_codeObject

Convert expression to code (internal, for ‘CAS::Op#to_proc` method)

* **returns**: `String` that represent Ruby code to be parsed in `CAS::Op#to_proc`


418
419
420
# File 'lib/functions/fnc-trig.rb', line 418

def to_code
  "Math::tan(#{@x.to_code})"
end

#to_sObject

Convert expression to string

* **returns**: `String` to print on screen


392
393
394
# File 'lib/functions/fnc-trig.rb', line 392

def to_s
  "tan(#{@x})"
end