YES

We show the termination of the TRS R:

  app(app(fmap(),fnil()),x) -> nil()
  app(app(fmap(),app(app(fcons(),f),t)),x) -> app(app(cons(),app(f,x)),app(app(fmap(),t),x))

-- SCC decomposition.

Consider the dependency pair problem (P, R), where P consists of

p1: app#(app(fmap(),app(app(fcons(),f),t)),x) -> app#(app(cons(),app(f,x)),app(app(fmap(),t),x))
p2: app#(app(fmap(),app(app(fcons(),f),t)),x) -> app#(cons(),app(f,x))
p3: app#(app(fmap(),app(app(fcons(),f),t)),x) -> app#(f,x)
p4: app#(app(fmap(),app(app(fcons(),f),t)),x) -> app#(app(fmap(),t),x)
p5: app#(app(fmap(),app(app(fcons(),f),t)),x) -> app#(fmap(),t)

and R consists of:

r1: app(app(fmap(),fnil()),x) -> nil()
r2: app(app(fmap(),app(app(fcons(),f),t)),x) -> app(app(cons(),app(f,x)),app(app(fmap(),t),x))

The estimated dependency graph contains the following SCCs:

  {p3, p4}


-- Reduction pair.

Consider the dependency pair problem (P, R), where P consists of

p1: app#(app(fmap(),app(app(fcons(),f),t)),x) -> app#(f,x)
p2: app#(app(fmap(),app(app(fcons(),f),t)),x) -> app#(app(fmap(),t),x)

and R consists of:

r1: app(app(fmap(),fnil()),x) -> nil()
r2: app(app(fmap(),app(app(fcons(),f),t)),x) -> app(app(cons(),app(f,x)),app(app(fmap(),t),x))

The set of usable rules consists of

  (no rules)

Take the reduction pair:

  lexicographic path order with precedence:
  
    precedence:
    
      app# > app > fmap > fcons
    
    argument filter:
  
      pi(app#) = 1
      pi(app) = [1, 2]
      pi(fmap) = []
      pi(fcons) = []

The next rules are strictly ordered:

  p1, p2

We remove them from the problem.  Then no dependency pair remains.