Papers
Topics
Authors
Recent
Search
2000 character limit reached

Trustworthy Influence Protocol (TIP)

Updated 10 December 2025
  • TIP is a computational trust framework for multi-human multi-robot teams that integrates both direct and indirect trust dynamics using Bayesian inference.
  • It employs cumulative Beta-distributed updates to capture and propagate trust from personal experiences and shared perceptions.
  • Experimental validation shows TIP achieves lower RMSE than direct-only models, highlighting its effectiveness in scalable trust propagation.

The Trustworthy Influence Protocol (TIP) is a computational trust modeling framework designed for multi-human multi-robot teams, explicitly capturing both direct and indirect trust dynamics as they unfold over repeated interactions. Unlike prior models that focus primarily on dyadic (one human, one robot) trust relationships, TIP extends Bayesian trust inference to scenarios with multiple humans and robots, enabling structured propagation of trust across networked agents. This approach allows each human agent’s trust in any robot (or other human) to be dynamically updated based on both personal experience and the communicated trust of teammates, modulated by an explicit weighting of interpersonal trust. The TIP formulation thus underpins a principled manner for trust formation and propagation in human-robot teaming systems (Guo et al., 2023).

1. Mathematical Formulation and Notation

In TIP, let H={h1,,hN}H = \{h_1,\ldots,h_N\} denote human agents, and R={r1,,rM}R = \{r_1,\ldots,r_M\} robot agents. For each ordered pair (a,b)(a,b) with aHa \in H and b(HR){a}b \in (H \cup R) \setminus \{a\}, the self-reported trust at time kk is tk(a,b)[0,1]t_k^{(a,b)} \in [0,1]. TIP models tk(a,b)t_k^{(a,b)} as a Beta-distributed random variable:

tk(a,b)Beta(αk(a,b),βk(a,b)),t_k^{(a,b)} \sim \mathrm{Beta}(\alpha_k^{(a,b)}, \beta_k^{(a,b)}),

with the expected value:

μk(a,b)=E[tk(a,b)]=αk(a,b)αk(a,b)+βk(a,b).\mu_k^{(a,b)} = \mathbb{E}[t_k^{(a,b)}] = \frac{\alpha_k^{(a,b)}}{\alpha_k^{(a,b)} + \beta_k^{(a,b)}}.

Trust evolution is governed by cumulative “experience counts” (αk(a,b),βk(a,b))(\alpha_k^{(a,b)}, \beta_k^{(a,b)}), which are incremented according to both direct and indirect observations.

Direct-Experience Update

For direct human-robot interaction, with pkr[0,1]p_k^r \in [0,1] the performance of robot rr at kk: αka,r=αk1a,r+sa,rpkr, βka,r=βk1a,r+fa,r(1pkr),\begin{aligned} \alpha_{k}^{a,r} &= \alpha_{k-1}^{a,r} + s^{a,r} p_{k}^{r}, \ \beta_{k}^{a,r} &= \beta_{k-1}^{a,r} + f^{a,r} (1 - p_{k}^{r}), \end{aligned} where sa,rs^{a,r} and fa,rf^{a,r} are per-unit gain hyper-parameters for “success” and “failure.”

Indirect-Experience (Propagation) Update

When xx receives a trust report from yy on robot rr,

Δ+=max{0,tky,rtk1x,r}, Δ=max{0,tk1x,rtky,r},\begin{aligned} \Delta^+ &= \max\{0,\, t_k^{y,r} - t_{k-1}^{x,r} \},\ \Delta^- &= \max\{0,\, t_{k-1}^{x,r} - t_k^{y,r} \}, \end{aligned}

the update is: αkx,rαk1x,r+s^x,rtkx,yΔ+, βkx,rβk1x,r+f^x,rtkx,yΔ,\begin{aligned} \alpha_{k}^{x,r} &\gets \alpha_{k-1}^{x,r} + \hat{s}^{x,r} t_k^{x,y} \Delta^+,\ \beta_{k}^{x,r} &\gets \beta_{k-1}^{x,r} + \hat{f}^{x,r} t_k^{x,y} \Delta^-, \end{aligned} where s^x,r,f^x,r\hat{s}^{x,r}, \hat{f}^{x,r} are propagation gains and tkx,yt_k^{x,y} is how much xx trusts yy.

2. Algorithmic Structure and Pseudocode

The TIP trust update can be operationalized as follows:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
initialize α^(a,b), β^(a,b), s^(a,b), f^(a,b), ŝ^(a,b), f̂^(a,b) for all aH, bHR
for k = 1K do
    -- 1) assign each human h a robot r
    observe robot performance pₖ^r
    for each human h assigned to r do
        -- direct update
        αₖ^(h,r)  αₖ^(h,r) + s^(h,r)·pₖ^r
        βₖ^(h,r)  βₖ^(h,r) + f^(h,r)·(1pₖ^r)
        compute μₖ^(h,r)
    -- 2) humans report and share tₖ^(h,r), and also report tₖ^(h,h)
    for each pair of humans (x,y) do
        for each robot r that y just used do
            Δ  max(0, tₖ^(y,r)  tₖ^(x,r))
            Δ  max(0, tₖ^(x,r)  tₖ^(y,r))
            αₖ^(x,r)  αₖ^(x,r) + ŝ^(x,r)·tₖ^(x,y)·Δ
            βₖ^(x,r)  βₖ^(x,r) + f̂^(x,r)·tₖ^(x,y)·Δ
            compute μₖ^(x,r)
    end for

This process yields closed-form, monotonic updates for all agent-agent trust values, supporting online inference with O(H×R)O(|H| \times |R|) state variables and O(H2×R)O(|H|^2 \times |R|) potential trust propagation links.

3. Trust Propagation Dynamics and Network Interpretation

TIP can be viewed as a protocol and as a trust propagation model over a directed graph G=(V,E)G=(V,E), where V=HRV = H \cup R. Edges represent direct human-robot experience (hrh \rightarrow r) or indirect propagation (hyrh \leftarrow y \rightarrow r). The amount of indirect trust propagated depends on the trust between human agents (tkh,yt_k^{h,y}): higher interpersonal trust leads to more substantial trust transfer. No explicit decay or damping is present; all updates are cumulative unless an extension introduces a discount parameter.

A plausible implication is that trust relationships in large teams will strongly depend on the network structure and frequency of interaction, and that selective sharing or more sophisticated network topologies are needed in scaled deployments.

4. Hyper-Parameters and Model Components

TIP requires careful setting of the following hyper-parameters:

Parameter Role Notes
α0a,b\alpha_0^{a,b}, β0a,b\beta_0^{a,b} Prior counts Sets initial trust bias
sa,bs^{a,b}, fa,bf^{a,b} Direct experience gains Positive/negative slopes
s^a,b\hat{s}^{a,b}, f^a,b\hat{f}^{a,b} Indirect propagation gains For trust propagation

All updates are monotonic, with no built-in temporal decay. Temporal discounting could be incorporated by scaling all experience counts at each step by λ(0,1)\lambda \in (0,1).

5. Experimental Validation

TIP was validated via a human-subjects experiment with 15 pairs of participants (N=30N=30) over K=15K=15 sessions of a simulated drone search-and-detect task. Each team operated with two drones: AA (90% reliability) and BB (60% reliability). At each session, after performing 10 trials with an assigned drone, individuals reported:

  • Trust in their own robot (direct trust)
  • Trust in their teammate (interpersonal trust)
  • Trust in the other drone (indirect trust)

Model parameters were fitted by maximizing the log-likelihood:

k=0KlogBeta(tka,rαka,r,βka,r)\sum_{k=0}^K \log \mathrm{Beta}(t_k^{a,r}|\alpha_k^{a,r},\beta_k^{a,r})

using (concave) gradient descent.

TIP’s predictive performance, as measured by RMSE, was superior to a direct-only baseline model:

  • TIP: RMSEA^A=0.057, RMSEB^B=0.082
  • Direct-only: RMSEA'^A=0.085, RMSEB'^B=0.107

Paired tt-tests showed these improvements were statistically significant (p<.001p<.001 for each drone). Individual trust curves exhibited meaningful 90% intervals derived from Beta(α,β)\mathrm{Beta}(\alpha, \beta) posteriors (Guo et al., 2023).

6. Practical Implementation and Limitations

Implementation of TIP as a “Trustworthy Influence Protocol” depends on accurate, online elicitation of trust reports tkh,rt_k^{h,r} and interpersonal trust tkh,ht_k^{h,h'} at each timestep. The protocol assumes truthful and cooperative self-reporting, does not explicitly account for adversarial or deceptive agents, and may require adaptation in heterogeneous or larger teams.

Scalability is O(H×R)O(|H| \times |R|) for maintaining state variables, and O(H2×R)O(|H|^2 \times |R|) for propagation links. Current limitations include the lack of temporal decay for outdated experiences and modeling only single-dimensional trust; extensions to multi-faceted trust or trust estimation via behavioral or psychophysiological signals are proposed. The approach assumes uniform sharing; more complex social network structures or varying degrees of selectivity could further enhance fidelity in larger or hierarchical teams.

7. Significance and Prospective Extensions

TIP provides, to date, the first Bayesian computational trust model specifically for multi-human multi-robot teams, establishing mechanisms to both capture and propagate trust across agents in a principled manner. Its ability to fuse direct and indirect experience yields more accurate, personalized trust dynamics, outperforming baseline models that ignore trust propagation.

Potential future directions include incorporation of temporal decay mechanisms, richer trust representations (e.g., multi-dimensional trust attributes), and indirect estimation of trust via analysis of agent behavior or biosignals. A more generalized network structure supporting selective, non-uniform information sharing would enhance applicability to real-world, large-scale collaborative teams (Guo et al., 2023).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (1)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Trustworthy Influence Protocol (TIP).